Hi, is it possible to test an abstract class with ...
# kotest
s
Hi, is it possible to test an abstract class with kotest?
w
How do you mean? How would you test an abstract class with a different framework (e.g. junit4)?
m
Can you instantiate an abstract class? The answer to this question will answer yours too 😉
👍 1
s
Yeah, this is the way I've went. Just thought there can be a some sort of mock.. anyway, I'm happy with a provided solution
m
When in doubt always ask yourself if it makes sense to test an item. What behavior should I test from it? What value adds to the project? Does it make sense?