使用Mockito,您可以像这样 监视真实对象 :
import org.junit.Test;import static org.mockito.Mockito.*;public class MyClassTest { @Test public void otherMethodShouldBeCalled() { MyClass myClass = new MyClass(); MyClass spy = spy(myClass); spy.myMethod(true); verify(spy).otherMethod(); }}
有一些陷阱,因此也请查看相关文档。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)