с easymock 3.0, вам нужно добавить .anyTimes () в функцию waitLastCall, иначе тест не пройден:
Expectation failure on verify: myMethod(): expected: 1, actual: 0`
на основе примера nkr1pt:
expectLastCall().andAnswer(new IAnswer() {
public Object answer() {
Assert.assertFail();
return null;
}
}).anyTimes();