I've got this in mycode:
import static org.easymock.classextension.EasyMock.createMock;
import static org.easymock.classextension.EasyMock.replay;
import static org.easymock.classextension.EasyMock.reset;
import static org.easymock.classextension.EasyMock.verify;
...
mockMember = createMock(Member.class);
mockMember.incrPlayInPlay(200);
Because I want to tst that the method incrPlayInPlay is called. However, mockMember.incrPlayInPlay is actually calling the method in the concrete class, not setting up the expectations for the mock. What am I doing wrong?