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.
是否可以在同一个 mockControl 对象中使用 niceMock 和“普通”模拟?
目前,如果我尝试将其中一个模拟设置为 nice
someMock = mockControl.createMock(someClass.class); EasyMock.resetToNice(someMock);
似乎将整个控件重置为不错
所以我想要一种在同一个控件中拥有不同模拟类型的方法。
谢谢
这不可能。但是,您始终可以将方法调用记录为 Stub,以便在默认模拟上具有良好的行为。