嘲笑 – PHPUnit模拟多个期望

来自谷歌模拟的背景,我很惊讶这不起作用,除非我做错了.

我只想确保从不使用特定的类类型调用方法,但可以为其他类类型调用.所以这里有我解释我想要的代码

$this->entityManagerMock
      ->expects($this->any())
      ->method('persist');
$this->entityManagerMock
     ->expects($this->never())
     ->method('persist')
     ->with($this->isinstanceOf('MySpecificclass'));

现在我收到类似这样的消息:

Doctrine\ORM\EntityManager::persist(DifferentClasstype Object (...)) was not expected to be called.

当我期望第一次期望处理它.

我尝试了这个,但结果是一样的:

$this->entityManagerMock
      ->expects($this->any())
      ->method('persist')
      ->with($this->anything());
$this->entityManagerMock
     ->expects($this->never())
     ->method('persist')
     ->with($this->isinstanceOf('MySpecificclass'));

这是我第一次在PHPUnit中使用模拟,但在我看来,它已被破坏和/或没用.我知道现在大多数Web开发人员都使用TDD,所以必须有更好的方法来实现这一点.

解决方法

作为解决方案,您可以使用 returnCallback

$this->entityManagerMock
     ->expects($this->any())
     ->method('persist')
     ->will($this->returnCallback(function ($object) {
         self::assertnotinstanceOf('MySpecificclass',$object);
     }));

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...