Using Mockito to test abstract classes

I’d like to test an abstract class. Sure, I can manually write a mock that inherits from the class.

Can I do this using a mocking framework (I’m using Mockito) instead of hand-crafting my mock? How?

12 Answers
12

Leave a Comment