Mockito: How to verify a method was called only once with exact parameters ignoring calls to other methods?

前端 未结 3 688
天涯浪人
天涯浪人 2020-12-28 12:15

Using Mockito in Java how to verify a method was called only once with exact parameters ignoring calls to other methods?

Sample code:

public class Mo         


        
3条回答
  •  悲哀的现实
    2020-12-28 12:43

    For anyone who's looking for mocking and verifying static method in Junit 5/Jupiter with Mockito, have a glance of this nice one https://stackoverflow.com/a/63242611/4809938

提交回复
热议问题