How can I mock private static method with PowerMockito?(如何使用 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(...)
.
To to this, you can use PowerMockito.spy(...)
and PowerMockito.doReturn(...)
.
此外,您必须在测试类中指定 PowerMock 运行器,并准备测试类,如下所示:
Moreover, you have to specify the PowerMock runner at your test class, and prepare the class for testing, 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 模拟私有静态方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 PowerMockito 模拟私有静态方法?


基础教程推荐
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01