Mockito - what does verify method do?

后端 未结 2 432
野性不改
野性不改 2021-02-01 15:15

Let\'s say i have the following psuedo like test code:

 //Let\'s import Mockito statically so that the code looks clearer
 import static org.mockito.Mockito.*;
         


        
2条回答
  •  忘了有多久
    2021-02-01 15:31

    It asserts that the method was called, and with those arguments.

    Comment out:

    //mockedList.add("one");
    

    Or change its argument and the test will fail.

提交回复
热议问题