https://blog.csdn.net/xiaoxufox/article/details/78562656

https://blog.csdn.net/xiaoxufox/article/details/78562656

 

https://blog.csdn.net/xjj1314/article/details/53311569

 

https://blog.csdn.net/diamond_tao/article/details/79977572

https://qiita.com/shotana/items/142bcd03ef6f9f25bf2a

https://blog.csdn.net/mq2553299/article/details/81116676

https://www.jianshu.com/p/472649b5710f

@Test
    @PrepareForTest(MainActivity.class)
    public void testPrivate() throws Exception {
        MainActivity mainActivity = PowerMockito.mock(MainActivity.class);
        PowerMockito.when(mainActivity.checkStringPrivate()).thenCallRealMethod();
        PowerMockito.when(mainActivity, "isOkPrivate").thenReturn(true);//isOkPrivate是私有方法,但是模拟了MainActivity,可以通过公有方法间接调用测试
        Assert.assertTrue(mainActivity.checkStringPrivate());

    }

@Test
    @PrepareForTest(FlySunDemo.class)
    public void callPrivateMethod() throws Exception {
        FlySunDemo demo = PowerMockito.mock(FlySunDemo.class);
        PowerMockito.when(demo.callPrivateMethod()).thenCallRealMethod();
        PowerMockito.when(demo, "isAlive").thenReturn(true);
        Assert.assertTrue(demo.callPrivateMethod());

    }
 

 

你可能感兴趣的:(JUnit,Test)