我正在使用PowerMockito
和spy
来模拟私有方法:
final SomeClass someClass = new SomeClass();
final SomeClass spy = PowerMockito.spy(someClass);
PowerMickito.doReturn("someValue", spy, "privateMethod1");
final String response = Whitebox.invokeMethod(spy, "anotherPrivateMethod");
// I can now verify `response` is of the correct data
// But I also want to verify `privateMethod1` was called x times or so
我不知道如何验证我的方法是否被调用了x次。
旁注
是否最好只protected
我所有的私有方法,然后在我的测试类中扩展该类并执行此操作?
这样
就可以了。
PowerMockito.doReturn("someValue", spy, "privateMethod1");
final String response = Whitebox.invokeMethod(spy, "anotherPrivateMethod");
assert(response)
verifyPrivate(spy, times(1)).invoke("anotherPrivateMethod", "xyz");
我假设您的私有方法(另一个私人方法(采用一个参数"xyz"。您可以根据私有方法声明进行修改。
测试私有方法是测试实现细节。如果您选择更改实现,则测试将变得毫无价值,并且将被丢弃。
你应该努力测试什么,而不是如何。然后,即使您更改实现,测试也会继续存在。
关于如何避免测试偶然细节的精彩论文可以在这里找到。