我正在设置模拟类的静态方法。我必须在带注释的@Before
JUnit 设置方法中执行此操作。
我的目标是设置类来调用真正的方法,除了那些我明确模拟的方法。
基本上:
@Before
public void setupStaticUtil() {
PowerMockito.mockStatic(StaticUtilClass.class);
// mock out certain methods...
when(StaticUtilClass.someStaticMethod(anyString())).thenReturn(5);
// Now have all OTHER methods call the real implementation??? How do I do this?
}
我遇到的问题是,不幸的是,在StaticUtilClass
方法中public static int someStaticMethod(String s)
抛出了一个RuntimeException
if 提供了一个null
值。
所以我不能简单地将调用真实方法的明显路线作为默认答案,如下所示:
@Before
public void setupStaticUtil() {
PowerMockito.mockStatic(StaticUtilClass.class, CALLS_REAL_METHODS); // Default to calling real static methods
// The below call to someStaticMethod() will throw a RuntimeException, as the arg is null!
// Even though I don't actually want to call the method, I just want to setup a mock result
when(StaticUtilClass.someStaticMethod(antString())).thenReturn(5);
}
在我模拟了我感兴趣的方法的结果后,我需要设置默认的 Answer 以在所有其他静态方法上调用真实方法。
这可能吗?