如何testingPHPUnit模拟对象中的第二个参数

这是我的:

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

但是这个方法应该有两个参数。 我只testing第一个参数是正确传递(如$ arg1)。

如何testing第二个参数?

我相信这样做的方法是:

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

要么

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

如果你需要在第二个参数上执行一个不同types的断言,你也可以这样做:

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

如果您需要确保某个parameter passing多个断言,请使用logicalAnd()

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