この機能をテストしたい:
public function reset()
{
if(!$this->onBeforeReset()) // Protected, internal method
{
return false;
}
// Continue with tests
}
onBeforeReset
関数がfalseまたはtrueを返すときにもテストしたいと思います。
どうやってやるの?それは可能ですか?
テスト中のクラスの一部を「モック」する方法はありますか?