最佳答案
关于使用 PHPUnit 模拟类中的私有方法,我有一个问题。让我用一个例子来介绍:
class A {
public function b() {
// some code
$this->c();
// some more code
}
private function c(){
// some code
}
}
如何存根私有方法的结果来测试公共函数的 更多代码部分。
解决了部分读取 给你的问题