How to mock a final class with mockito

后端 未结 25 1092
日久生厌
日久生厌 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:38

    Just to follow up. Please add this line to your gradle file:

    testCompile group: 'org.mockito', name: 'mockito-inline', version: '2.8.9'
    

    I have tried various version of mockito-core and mockito-all. Neither of them work.

提交回复
热议问题