我有这样的情况
class A{
public method1(){
result = method2();
}
private method2(){
result = method3()
some processing;
return result2;
}
private method3(){
processing;
return result;
}
}
我想测试method1()
,但当method2
调用method3
时,我不希望实际执行method3
,但返回我想要的值。有没有办法做到这一点?