首次调用后重置Mock对象(Mockito,Junit)

时间:2017-11-30 17:53:37

标签: junit mockito

@Mock
MyTestClass testMock;

public void testMyTestMock() {
    when(testMock.function()).thenReturn(2).thenReturn(4);
}

如何在首次调用后重置模拟

1 个答案:

答案 0 :(得分:0)

请参阅API文档中的mock.reset()