如何使用PowerMockito模拟私有静态方法



我正在尝试模拟私有静态方法anotherMethod()。参见下方的代码

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");
        }    
}

但我运行的每一个磁贴都会出现这个异常

java.lang.AssertionError: expected object to not be null

我想我是在嘲笑别人。你知道我该怎么修吗?

为此,您可以使用PowerMockito.spy(...)PowerMockito.doReturn(...)

此外,您必须在测试类中指定PowerMock运行程序,并为测试准备类,如下所示:

@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");
   }
}

希望它能帮助你。

如果anotherMethod()将任何参数作为anotherMethod

PowerMockito.doReturn("abc").when(Util.class, "anotherMethod", parameter);

我不确定您使用的是PowerMock的哪个版本,但对于更高版本,您应该使用@RunWith(PowerMockRunner.class) @PrepareForTest(Util.class)

说到这里,我发现使用PowerMock真的很有问题,这无疑是一个糟糕设计的标志。如果你有时间/机会改变设计,我会先尝试一下。

相关内容

  • 没有找到相关文章