Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是easymock的新手。
我正在尝试模拟一项服务,其中一种方法是无效方法,该方法将被调用未知(且大量)次。如何指定允许任意数量的调用?
我知道如何为具有非 void 返回类型的方法执行此操作。
谢谢
调用 mock 的 void 方法。之后使用EasyMock.expectLastCall().anyTimes()
EasyMock.expectLastCall().anyTimes()