如何使用 easymock 3.x 模拟类?
所以我在我的类中进行了以下导入:
import static org.easymock.classextension.EasyMock.*;
所以我创建了一个真实的对象
SomeJobDataMap map = SomeJobDataMap();
map.put(Constant.SOMETHING,"somevalue");
map.put(Constant.SOMETHING_ELSE,"anothervalue")
然后我创建了一个模拟:
SomeJobContext context = createMock(SomeJobContext.class);
expect(context.getJobDataMap()).andReturn(map);
replay(context);
testTargetClass.methodUnderTest(context);
...除了“methodUnderTest”尝试访问这些值时发生的 NPE 之外,没有任何错误。为什么我的模拟没有返回地图?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜想您的测试类正在与您的 SomeJobContext 类协作。
在这种情况下,您需要调用 testTargetClass.setContext(context)。
I guess that your class under test is collaborating with your SomeJobContext class.
In that case you need to call testTargetClass.setContext(context).
也许您忘记配置测试期望调用该方法的次数?
Maybe you've forgotten to configure the number of times the test expects the method to be invoked?