Whitebox.invokeMethod(),检查返回的对象中的值

时间:2018-11-08 00:55:17

标签: java junit mockito powermock powermockito

在私有方法上使用以下代码时,是否可以检查返回的对象的值:

Whitebox.invokeMethod(processor, "myPrivateMethod", anObj);

上述方法myPrivateMethod返回一个对象otherObj。我怎么assertTrue(otherObj.getMyBoolean())

我在想这样的事情:

OtherObj otherObj;
otherObj = Whitebox.invokeMethod(processor, "myPrivateMethod", anObj);
assertTrue(otherObj.getMyBoolean())

但这会导致NPE

0 个答案:

没有答案