I want to mock a method in abstract class say 'A' and also need to pass and instance of type A to the methods I am unit testing.
Is there a way to create an instance using Jmockit like Mockit.newemptyProxy How do I solve this scenario
|
I want to mock a method in abstract class say 'A' and also need to pass and instance of type A to the methods I am unit testing. Is there a way to create an instance using Jmockit like Mockit.newemptyProxy How do I solve this scenario |
|||
|
|
|
You could do it simply like this:
Note the "A mock" parameter in the test method. |
|||
|
|
|
Maybe this is a silly question, but do you actually need JMockit in this situation? Can't you just make a subclass of
|
|||
|
|