如何使用 easymock 3.x 模拟类?

发布于 2024-12-08 09:03:46 字数 598 浏览 1 评论 0原文

所以我在我的类中进行了以下导入:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迟到的我 2024-12-15 09:03:46

我猜想您的测试类正在与您的 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).

花伊自在美 2024-12-15 09:03:46

也许您忘记配置测试期望调用该方法的次数?

SomeJobContext context = createMock(SomeJobContext.class);
expect(context.getJobDataMap()).andReturn(map).once();
replay(context);

testTargetClass.methodUnderTest(context);

Maybe you've forgotten to configure the number of times the test expects the method to be invoked?

SomeJobContext context = createMock(SomeJobContext.class);
expect(context.getJobDataMap()).andReturn(map).once();
replay(context);

testTargetClass.methodUnderTest(context);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文