标签: junit mockito
@Mock MyTestClass testMock; public void testMyTestMock() { when(testMock.function()).thenReturn(2).thenReturn(4); }
如何在首次调用后重置模拟?
答案 0 :(得分:0)
请参阅API文档中的mock.reset()
mock.reset()