我有一个我需要模拟的课程:
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);
}
}
我正在使用Mockery 0.7.2
$mediaPublisherMock = \Mockery::mock('MessagePublisher')
->shouldReceive('publish')
->withAnyArgs()
->times(3)
->andReturn(null);
遗憾的是,由于此错误,我的测试失败了
call_user_func_array()期望参数1是有效的回调, class'Mockery \ Expectation'没有方法'发布' /vendor/mockery/mockery/library/Mockery/CompositeExpectation.php 第54行
我试图调试我发现此代码中的测试失败
public function __call($method, array $args)
{
foreach ($this->_expectations as $expectation) {
call_user_func_array(array($expectation, $method), $args);
}
return $this;
}
其中
$ method ='发布'
$ args = array()
$ expectation是Mockery \ Expectation对象()的实例
我正在使用php 5.3.10 - 任何想法有什么问题?
答案 0 :(得分:46)
这种情况正在发生,因为您要将模拟期望分配给$mediaPublisherMock
,而不是模拟本身。尝试将getMock
方法添加到该调用的结尾,例如:
$mediaPublisherMock = \Mockery::mock('MessagePublisher')
->shouldReceive('publish')
->withAnyArgs()
->times(3)
->andReturn(null)
->getMock();
答案 1 :(得分:2)
使用标准的PhpUnit Mock库解决了问题
这有效:
$mediaPublisherMock = $this->getMock('Mrok\Model\MessagePublisher', array('publish'), array(), '', false);
$mediaPublisherMock->expects($this->once())
->method('publish');
为什么我没有从这开始;)
答案 2 :(得分:0)
我相信$ expectation应该是你的类,MessagePublisher