I am currently trying to learn how to use easymock. I have the following code:
List list = EasyMock.createMock(List.class);
EasyMock.expect(list.size()).andReturn(0);
EasyMock.replay(list);
EasyMock.verify(list);
This, to me at least, should work -- a list is initialized with nothing in it and the size should return 0. I get the following error, however:
java.lang.AssertionError:
Expectation failure on verify:
size(): expected: 1, actual: 0
I thought this was weird, so I changed the 0 in the line to a 1 and reran the test. I got the same error. Does anyone know what I'm doing wrong? Thanks in advance!