EasyMock 不区分子类

发布于 2024-12-05 01:12:53 字数 612 浏览 1 评论 0原文

给出以下

class Event{
}

class SpecialEvent extends Event{

}

class OtherEvent extends Event{

}

class EventPublisher{
   public publish(Event e){
   }
}

@test
testBlah{
   myService = new MyService();

   mockEvent = createMock(EventPublisher)
   mySercice.setEventPublisher(mockEvent);
   mockEvent.publish(anyObject(SpecialEvent.class));
   expectLastCall.once();
   replay(mockEvent);
   myServce.doSomethingThatCauesesSpecialEventToBePublished();
   verify(mockEvent);
}

If myService.doSomething.... 发布一个不是 SpecialEvent.class 的事件,只要该事件从 Event 扩展,测试就不会失败。有没有办法确保此操作失败?

Given the following

class Event{
}

class SpecialEvent extends Event{

}

class OtherEvent extends Event{

}

class EventPublisher{
   public publish(Event e){
   }
}

@test
testBlah{
   myService = new MyService();

   mockEvent = createMock(EventPublisher)
   mySercice.setEventPublisher(mockEvent);
   mockEvent.publish(anyObject(SpecialEvent.class));
   expectLastCall.once();
   replay(mockEvent);
   myServce.doSomethingThatCauesesSpecialEventToBePublished();
   verify(mockEvent);
}

If myService.doSomething.... Publishes an event that is NOT SpecialEvent.class it does not fail the test as long as the event extends from Event. Is there a way to ensure that this fails?

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

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

发布评论

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

评论(1

山有枢 2024-12-12 01:12:53

anyObject 将匹配任何对象 - 该类只是更改返回类型。我怀疑你想要 isA

mockEvent.publish(isA(SpecialEvent.class));

anyObject will match any object - the class just changes the return type. I suspect you want isA:

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