亲爱的 stackoverflow 同志,我在让特定的 PowerMock / Mockito 案例工作时再次遇到问题。问题是,我需要验证私有静态方法的调用,该方法是从公共非静态方法调用的。我之前发布的一个类似示例如何抑制和验证私有静态方法调用?
这是我的代码:
class Factory {
public String factorObject() throws Exception {
String s = "Hello Mary Lou";
checkString(s);
return s;
}
private static void checkString(String s) throws Exception {
throw new Exception();
}
}
这是我的测试类:
@RunWith(PowerMockRunner.class)
@PrepareForTest(Factory.class)
public class Tests extends TestCase {
public void testFactory() throws Exception {
Factory factory = mock(Factory.class);
suppress(method(Factory.class, "checkString", String.class));
String s = factory.factorObject();
verifyPrivate(factory, times(8000)).invoke("checkString", anyString());
}
}
这里的问题是,测试成功了,但它不应该成功。这不应该是因为私有静态方法应该被准确地调用 1 次。但是无论我在 times() 中输入什么值,它总是会验证它是真的...... halp :(