JMock允许其他方法调用

发布于 2024-10-24 17:40:40 字数 210 浏览 0 评论 0原文

我正在使用 JMock 来测试使用对象的类的行为。我想测试方法 a() 是否被调用。但是,b()c() 也会在该对象上调用。因此,如果我的期望期望 a(),它也必须期望 b()c() 使测试通过。有没有办法只测试某种方法,而允许其他方法?

I'm using JMock to test the behavior of a class using an object. I want to test that the method a() is called. However, b() and c() also are called on the object too. Therefore if my expectations expect a(), it must also expect b() and c() to make the test pass. Is there a way to test only for a certain method, and allow anything else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

阿楠 2024-10-31 17:40:40

期望 a() 只允许方法 b() & c()

mockery.checking(new Expectations() {{
    one(mockObject).a();

    allowing(mockObject).b();
    allowing(mockObject).c();
}});

期望 a() 允许所有其他方法。

mockery.checking(new Expectations() {{
    one(mockObject).a();

    allowing(mockObject);
}});

Expect a() allow only methods b() & c()

mockery.checking(new Expectations() {{
    one(mockObject).a();

    allowing(mockObject).b();
    allowing(mockObject).c();
}});

Expect a() allow all other methods.

mockery.checking(new Expectations() {{
    one(mockObject).a();

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