Powermock 和 Mockito.在模拟和存根同一类时避免对类进行静态初始化 [英] Powermock and Mockito. Avoid static initialization for a class while mocking and stubing the same class

查看:41
本文介绍了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.在模拟和存根同一类时避免对类进行静态初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆