I have to test one of my abstract classes which is implementing one of the interfaces. The abstract class is having a constructor with arguments. I am using Mockito as the testing framework. So if I need to call the methods in the abstract class, what should be the best method?
If I try to subclass the abstract class, its asking to implement the argument constructor and not allowing a no-arg constructor to be written. Also if I try to mock a class without a no-arg constructor, and put sysouts in the methods, usually I cannot see them invoked (Should the mocked class need a mandatory no-arg constructor ?) although there is no junit failure.
Please help. Thanks in advance.