Need help to write a unit test using Mockito and JUnit4

前端 未结 10 1040
余生分开走
余生分开走 2020-12-15 04:06

Need help to write a unit test for the below code using Mockito and JUnit4,

public class MyFragmentPresenterImpl { 
      public Boolean isValid(String value         


        
10条回答
  •  轮回少年
    2020-12-15 04:38

    add this line in your gradle file in case of Android Studio.

    android{
    ....
     testOptions {
            unitTests.returnDefaultValues = true
     }
    }
    

提交回复
热议问题