Mockito在测试方法之外存根

时间:2013-11-05 20:35:57

标签: java mockito

我在测试方法之外有以下方法

private DynamicBuild getSkippedBuild() {
    DynamicBuild build = mock(DynamicBuild.class);
    when(build.isSkipped()).thenReturn(true);
    return build;
}

但是当我调用此方法时,我收到以下错误

org.mockito.exceptions.misusing.UnfinishedStubbingException: 
Unfinished stubbing detected here:
-> at LINE BEING CALLED FROM

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();
Hints:
 1. missing thenReturn()
 2. you are trying to stub a final method, you naughty developer!

当你在测试方法之外存根时,看起来mockito不高兴。这不受支持吗?

编辑:我可以通过@Test方法中的存根来实现此功能,但我想在@Test之间重复使用存根。

1 个答案:

答案 0 :(得分:13)

如果isSkipped()不是final方法,则此问题可能表示您尝试在另一个方法的存根正在进行时存根方法。它不受支持,因为Mockito在其存根API中依赖于方法调用(when()等)的顺序。

我猜你的测试方法中有这样的东西:

when(...).thenReturn(getSkippedBuild());

如果是这样,您需要按如下方式重写它:

DynamicBuild build = getSkippedBuild();
when(...).thenReturn(build);