我有一个PHPUnit模拟对象,'return value'
无论其参数是什么,它都会返回:
// From inside a test...
$mock = $this->getMock('myObject', 'methodToMock');
$mock->expects($this->any))
->method('methodToMock')
->will($this->returnValue('return value'));
我想要做的是根据传递给模拟方法的参数返回一个不同的值。我已经尝试过类似的方法:
$mock = $this->getMock('myObject', 'methodToMock');
// methodToMock('one')
$mock->expects($this->any))
->method('methodToMock')
->with($this->equalTo('one'))
->will($this->returnValue('method called with argument "one"'));
// methodToMock('two')
$mock->expects($this->any))
->method('methodToMock')
->with($this->equalTo('two'))
->will($this->returnValue('method called with argument "two"'));
但这会导致PHPUnit抱怨,如果未使用参数调用模拟'two'
,那么我认为methodToMock('two')
覆盖的定义会覆盖第一个的定义。
所以我的问题是:有没有办法让PHPUnit模拟对象根据其参数返回不同的值?如果是这样,怎么办?