嘲弄“with”方法没有显示失败的原因

我在with模拟上使用方法以断言该方法是以对象作为参数调用的


        Mockery::mock(PaymentRepository::class)

             ->shouldReceive('removeTripPayments')

             ->with($trip)

             ->mock();

哪个失败了,我仍然不知道为什么,但我最关心的是这是否是检查它的正确方法,以及是否有可能显示预期参数与给定参数的不同之处。


1) PaymentServiceTest::test_removing_payments

Mockery\Exception\NoMatchingExpectationException: No matching handler found for Mockery_0_PaymentRepository::removeTripPayments(object(Trip)). Either the method was unexpected or its arguments matched no expected argument list for this method


Objects: ( array (

  'MyNamespace\Trip' =>

  array (

    'class' => 'MyNamespace\\Trip',

    'properties' =>

    array (

    ),

  ),

))


慕无忌1623718
浏览 98回答 1
1回答

白猪掌柜的

当您将对象作为参数传递给方法时,在这种情况下,您正在传递对象(Trip),然后 PHPUnit 变得疯狂。我一直有这个问题,你有两个解决方案,第一个使用 Mockery::on();->with(Mockery::on(function($Param){    $this->assertEqual(get_class($Param), get_class(Trip));    return true;}))如您所见,PHPUnit 无法完全比较两个对象,因此您需要比较部分对象,在这种情况下,我使用 get_clas 来检查类的名称。第二种解决方案可能是使用->andReturnUsing(function($param){   $this->assertEqual(get_class($Param), get_class(Trip));   return true; // Expected response});也许这对你有帮助。
打开App,查看更多内容
随时随地看视频慕课网APP