| Author |
EasyMock dummy question
|
nlhma nlhmaLastName
Greenhorn
Joined: Dec 05, 2010
Posts: 4
|
|
Hi,
I wrote the following small piece of code to get familiar with EasyMock and somehow the unit test always failed (AssertionFailedError: expected:<0> but was: <99>):
I am using EasyMock 3.0, cglib 2.2, objenesis 1.2, asm 3.3, and junit 4.0. Could you guys please help let me know what went wrong with the code?
Thank you very much.
|
 |
Henri Tremblay
Greenhorn
Joined: May 21, 2009
Posts: 7
|
|
That's because you are creating your mock using the static EasyMock.createMock method and then replaying and verifying the mock control.
To simplify your code and make it work you can do the following:
|
Henri Tremblay
Senior architect
Octo Technology
|
 |
nlhma nlhmaLastName
Greenhorn
Joined: Dec 05, 2010
Posts: 4
|
|
|
Oh so it is the way EasyMock 3 works? I did it like in my code because I saw some examples from EasyMock 2.
|
 |
 |
|
|
subject: EasyMock dummy question
|
|
|