So I've got the following import in my class:
import static org.easymock.classextension.EasyMock.*;
So I create a real object
SomeJobDataMap map = SomeJobDataMap();
map.put(Constant.SOMETHING,"somevalue");
map.put(Constant.SOMETHING_ELSE,"anothervalue")
Then I create a mock:
SomeJobContext context = createMock(SomeJobContext.class);
expect(context.getJobDataMap()).andReturn(map);
replay(context);
testTargetClass.methodUnderTest(context);
... no errors except the NPE that occurS when "methodUnderTest" tries to access the values. Why isn't my mock returning the map?
verifyand make sure you have mocked the right method (i.e. it is invoked in the flow) – aishwarya Nov 26 '11 at 10:58