模拟静态无效方法时抛出“UnfinishedStubingException:此处检测到未完成的存根”

时间:2021-06-30 09:39:41

标签: java testing exception mockito powermockito

运行以下代码时,我在此处收到错误消息 Unfinished Stubbing detection:

这是带有 public static void myMethod 的 MyClass。

class MyClass{
public static void myMethod(){
    return;
}

}

这是带有 myMethod2 方法的 MyClass2。在 myMethod2 中,myMethod 正在调用。

class MyClass2{
public String myMethod2(){
    MyClass.myMethod();
    return "String";
}

}

这里是为测试 myMethod2 编写的测试用例。

class MyMethodTest{
MyClass2 myClass2;
@Test
public void myMethodTwoTest(){
    PowerMockito.mockStatic(MyClass.class);
    PowerMockito.doNothing().when(MyClass.class);
    MyClass.myMethod();
    String str = myClass2.myMethod2();
    assertEquals(str,"String");
}

}

运行此方法时,我收到 UnfinishedStubingException。

    org.mockito.exceptions.misusing.UnfinishedStubbingException: 
Unfinished stubbing detected here:
-> at **.***.***.**.MyMethodTest.myMethodTwoTest(MyMethodTest.java:125)

E.g. thenReturn() may be missing.
Examples of correct stubbing:
    when(mock.isOk()).thenReturn(true);
    when(mock.isOk()).thenThrow(exception);
    doThrow(exception).when(mock).someVoidMethod();```


Please help me to solve this issue. 

1 个答案:

答案 0 :(得分:0)

我相信 https://www.baeldung.com/mockito-mock-static-methods 给出了很好的解释。看着这一点,我认为以下内容应该可行:

class MyMethodTest{
MyClass2 myClass2;
@Test
public void myMethodTwoTest(){
    PowerMockito.mockStatic(MyClass.class).when(MyClass::myMethod).doNothing();
    String str = myClass2.myMethod2();
    assertEquals(str,"String");
}
相关问题