我有一个需要模拟的课程:
class MessagePublisher
{
/**
* @param \PhpAmqpLib\Message\AMQPMessage $msg
* @param string $exchange - if not provided then one passed in constructor is used
* @param string $routing_key
* @param bool $mandatory
* @param bool $immediate
* @param null $ticket
*/
public function publish(AMQPMessage $msg, $exchange = "", $routing_key = "", $mandatory = false, $immediate = false, $ticket = null)
{
if (empty($exchange)) {
$exchange = $this->exchangeName;
}
$this->channel->basic_publish($msg, $exchange, $routing_key, $mandatory, $immediate, $ticket);
}
}
我正在使用嘲弄 0.7.2
$mediaPublisherMock = \Mockery::mock('MessagePublisher')
->shouldReceive('publish')
->withAnyArgs()
->times(3)
->andReturn(null);
不幸的是,由于这个错误,我的测试失败了
call_user_func_array() 期望参数 1 是一个有效的回调,类 'Mockery\Expectation' 在第 54 行的 /vendor/mockery/mockery/library/Mockery/CompositeExpectation.php 中没有方法 'publish'
我尝试调试我发现此代码中的测试失败
public function __call($method, array $args)
{
foreach ($this->_expectations as $expectation) {
call_user_func_array(array($expectation, $method), $args);
}
return $this;
}
其中
$method = 'publish'
$args = array()
$expectation 是 Mockery\Expectation 对象 () 的实例
我正在使用 php 5.3.10 - 知道有什么问题吗?