Is this possible?
I tried with EasyMock.expectLastCall().times(0); but EasyMock complains that times must be >=1
|
|
|||
|
|
with easymock 3.0, you need to add a .anyTimes() on the expectLastCall or the test will fail:
based on nkr1pt example:
|
|||
|
|
|
I managed to come up with a solution:
|
|||
|
|
|
The fact that some method is not called is controlled by So the solution is don't use |
|||
|
|
|
You could use |
||||
|
|
|
Looks like a bug to me. The internal class Couldn't you mock that method, and just call |
|||
|
|
|
If you expect your method not to be called then just don't record it. But I agree it won't work with a nice mock. |
|||
|
|