我有一个 PHPUnit 模拟对象,不管它的参数是什么,它都返回 'return value'
:
// From inside a test...
$mock = $this->getMock('myObject', 'methodToMock');
$mock->expects($this->any))
->method('methodToMock')
->will($this->returnValue('return value'));
我希望能够根据传递给 mock 方法的参数返回一个不同的值。我试过这样的方法:
$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"'));
但是如果没有使用参数 'two'
调用 mock,这会导致 PHPUnit 抱怨,所以我假设 methodToMock('two')
的定义覆盖了第一个的定义。
所以我的问题是: 有没有办法让一个 PHPUnit 模拟对象根据它的参数返回一个不同的值?如果是这样,怎么做?