Powermock and Mockito. Avoid static initialization for a class while mocking and stubing the same class(Powermock 和 Mockito.在模拟和存根同一类时避免对类进行静态初始化)
问题描述
假设我有一个名为 Util 的类,其中包含静态字段:
Suppose I have a class named Util with static fields:
public class Util {
public static field = Param.getValue("param1");
}
Param 类看起来像这样:
and the class Param look like this:
public class Param {
public static field = SomeClass.getValue("someValue");
}
我想在 Util 中模拟和存根 Param.getValue("param1"),但同时我想抑制 Param 类的静态初始化.我怎样才能做到这一点?
I want to mock and stubb Param.getValue("param1") inside Util, but at the same time I want suppress static initialization for Param class. How can I achieve this?
这是我的第一次尝试,但它不起作用
This is my first attempt but it's not working
@RunWith(PowerMockRunner.class)
@PrepareForTest({Param.class})
@SuppressStaticInitializationFor("py.com.company.Param")
public class Test {
@Test
public void testSomeMethod() {
PowerMockito.mockStatic(Param.class);
when(Param.getValue("value1")).thenReturn("someValue1");
}
}
推荐答案
这对我有用.如果没有 @SuppressStaticInitializationFor
:
This is working for me. I get no output, and SomeClass#getValue
if no @SuppressStaticInitializationFor
:
@RunWith(PowerMockRunner.class)
@SuppressStaticInitializationFor({"so35047166.Param"})
@PrepareForTest({Param.class})
public class UtilTest {
@Before
public void setUp() throws Exception {
PowerMockito.mockStatic(Param.class);
}
@Test
public void testFoo() throws Exception {
final Util util = new Util();
assertEquals("Util#foo", util.foo());
assertEquals(null, Util.field);
}
}
与:
// all in package so35047166;
public class Util {
public static String field = Param.getValue("param1");
public String foo() {
return "Util#foo";
}
}
public class Param {
public static String field = SomeClass.getValue("someValue");
public static String getValue(final String in) {
System.out.println("Param#getValue");
return "Param#getValue";
}
}
public class SomeClass {
public static String getValue(final String in) {
System.out.println("SomeClass#getValue");
return "SomeClass#getValue";
}
}
这篇关于Powermock 和 Mockito.在模拟和存根同一类时避免对类进行静态初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Powermock 和 Mockito.在模拟和存根同一类时避免对类进行静态初始化


基础教程推荐
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 存储 20 位数字的数据类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01