本文介绍了如何使用PowerMockito模拟私有静态方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试模拟私有静态方法 anotherMethod()
。请参阅下面的代码
I'm trying to mock private static method anotherMethod()
. See code below
public class Util {
public static String method(){
return anotherMethod();
}
private static String anotherMethod() {
throw new RuntimeException(); // logic was replaced with exception.
}
}
这是我测试代码
@PrepareForTest(Util.class)
public class UtilTest extends PowerMockTestCase {
@Test
public void should_prevent_invoking_of_private_method_but_return_result_of_it() throws Exception {
PowerMockito.mockStatic(Util.class);
PowerMockito.when(Util.class, "anotherMethod").thenReturn("abc");
String retrieved = Util.method();
assertNotNull(retrieved);
assertEquals(retrieved, "abc");
}
}
但我运行的每个瓷砖都会出现此异常
But every tile I run it I get this exception
java.lang.AssertionError: expected object to not be null
我想我在做嘲弄事情时做错了。任何想法如何解决?
I suppose that I'm doing something wrong with mocking stuff. Any ideas how can I fix it?
推荐答案
为此,您可以使用 PowerMockito.spy( ...)
和 PowerMockito.doReturn(...)
。
此外,您必须在测试类中指定PowerMock运行器,如下所示:
To to this, you can use PowerMockito.spy(...)
and PowerMockito.doReturn(...)
.Moreover, you have to specify the PowerMock runner at your test class, as follows:
@PrepareForTest(Util.class)
@RunWith(PowerMockRunner.class)
public class UtilTest {
@Test
public void testMethod() throws Exception {
PowerMockito.spy(Util.class);
PowerMockito.doReturn("abc").when(Util.class, "anotherMethod");
String retrieved = Util.method();
Assert.assertNotNull(retrieved);
Assert.assertEquals(retrieved, "abc");
}
}
希望对您有帮助。
这篇关于如何使用PowerMockito模拟私有静态方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!