如何使用 powermock-mockito 访问方法中声明的对象?
例如 :
Class A
{
private void method1()
{
B b = new B();
// This method returns nothing , and I have no intention to change it's return type or //any other things.
}
}
Class B {
public B()
{
}
}
现在我正在编写调用此私有方法的测试用例,在我的测试用例中,我想获取在 method1 中创建的对象 B 的值。(PowerMock-Mockito)