如何在easymock中模拟一个返回其参数之一的方法?
public Object doSomething(Object o);
我想嘲笑一下。它应该只返回其参数。我试过了:
Capture<Object> copyCaptcher = new Capture<Object>();
expect(mock.doSomething(capture(copyCaptcher)))
.andReturn(copyCatcher.getValue());
但是没有成功,我只得到一个断言错误作为.有什么想法吗?java.lang.AssertionError: Nothing captured yet