@Mock
MyTestClass testMock;
public void testMyTestMock() {
when(testMock.function()).thenReturn(2).thenReturn(4);
}
如何重置模拟第一次调用?
请参阅API DOCS中的mock.reset()