如何在PHPUnit模拟对象中测试第二个参数


68

这就是我所拥有的:

$observer = $this->getMock('SomeObserverClass', array('method'));
$observer->expects($this->once())
         ->method('method')
         ->with($this->equalTo($arg1));

但是该方法应采用两个参数。我只测试第一个参数正确传递(如$ arg1)。

如何测试第二个参数?

Answers:


106

我相信这样做的方法是:

$observer->expects($this->once())
     ->method('method')
     ->with($this->equalTo($arg1),$this->equalTo($arg2));

要么

$observer->expects($this->once())
     ->method('method')
     ->with($arg1, $arg2);

如果您需要在第二个arg上执行不同类型的断言,也可以执行以下操作:

$observer->expects($this->once())
     ->method('method')
     ->with($this->equalTo($arg1),$this->stringContains('some_string'));

如果您需要确保某些参数传递多个断言,请使用logicalAnd()

$observer->expects($this->once())
     ->method('method')
     ->with($this->logicalAnd($this->stringContains('a'), $this->stringContains('b')));

1
几个星期前,我遇到了这个问题。使用:-> with($ this-> equalTo($ foo,$ bar)对我
有用-–ieure

8
@ieure equalTo()的第二个参数是$ delta,因此可能不会执行您认为的操作。
Nate Bundy 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.