我想测试这个功能:
public function reset()
{
if(!$this->onBeforeReset()) // Protected, internal method
{
return false;
}
// Continue with tests
}
我也希望在onBeforeReset
函数返回 false 或 true 时对其进行测试。
我怎样才能做到这一点?那可能吗?
有没有办法“模拟”被测类的某些部分?