How to mock a final class with mockito

后端 未结 25 1396
日久生厌
日久生厌 2020-11-22 16:35

I have a final class, something like this:

public final class RainOnTrees{

   public void startRain(){

        // some code here
   }
}

I

25条回答
  •  渐次进展
    2020-11-22 16:49

    add this in your gradle file:

    testImplementation 'org.mockito:mockito-inline:2.13.0'
    

    this is a configuration to make mockito work with final classes

提交回复
热议问题