在纯 PHPUnit 模拟中,我可以执行以下操作:
$mock->expects($this->at(0))
->method('isReady')
->will($this->returnValue(false));
$mock->expects($this->at(1))
->method('isReady')
->will($this->returnValue(true));
我无法使用 Prophecy 做同样的事情。可能吗?
您可以使用:
$mock->isReady()->willReturn(false, true);
显然它没有记录(见https://gist.github.com/gquemener/292e7c5a4bbb72fd48a8)。
还有另一种记录在案的方法可以做到这一点。如果您期望在第二次调用时得到不同的结果,则意味着两者之间发生了一些变化,您可能使用了 setter 来修改对象的状态。这样,您可以告诉您的模拟在调用具有特定参数的设置器后返回特定结果。
$mock->isReady()->willReturn(false);
$mock->setIsReady(true)->will(function () {
$this->isReady()->willReturn(true);
});
// OR
$mock->setIsReady(Argument::type('boolean'))->will(function ($args) {
$this->isReady()->willReturn($args[0]);
});
更多信息在这里https://github.com/phpspec/prophecy#method-prophecies-idempotency。