<small id='uSZGD'></small><noframes id='uSZGD'>

<legend id='uSZGD'><style id='uSZGD'><dir id='uSZGD'><q id='uSZGD'></q></dir></style></legend>
  • <tfoot id='uSZGD'></tfoot>

      • <bdo id='uSZGD'></bdo><ul id='uSZGD'></ul>
      <i id='uSZGD'><tr id='uSZGD'><dt id='uSZGD'><q id='uSZGD'><span id='uSZGD'><b id='uSZGD'><form id='uSZGD'><ins id='uSZGD'></ins><ul id='uSZGD'></ul><sub id='uSZGD'></sub></form><legend id='uSZGD'></legend><bdo id='uSZGD'><pre id='uSZGD'><center id='uSZGD'></center></pre></bdo></b><th id='uSZGD'></th></span></q></dt></tr></i><div id='uSZGD'><tfoot id='uSZGD'></tfoot><dl id='uSZGD'><fieldset id='uSZGD'></fieldset></dl></div>

      1. 如何创建学说实体的模拟对象?

        How to create a mock object of a doctrine entity?(如何创建学说实体的模拟对象?)
      2. <small id='mZDYQ'></small><noframes id='mZDYQ'>

      3. <tfoot id='mZDYQ'></tfoot>
        <i id='mZDYQ'><tr id='mZDYQ'><dt id='mZDYQ'><q id='mZDYQ'><span id='mZDYQ'><b id='mZDYQ'><form id='mZDYQ'><ins id='mZDYQ'></ins><ul id='mZDYQ'></ul><sub id='mZDYQ'></sub></form><legend id='mZDYQ'></legend><bdo id='mZDYQ'><pre id='mZDYQ'><center id='mZDYQ'></center></pre></bdo></b><th id='mZDYQ'></th></span></q></dt></tr></i><div id='mZDYQ'><tfoot id='mZDYQ'></tfoot><dl id='mZDYQ'><fieldset id='mZDYQ'></fieldset></dl></div>
          <legend id='mZDYQ'><style id='mZDYQ'><dir id='mZDYQ'><q id='mZDYQ'></q></dir></style></legend>
                  <tbody id='mZDYQ'></tbody>

                • <bdo id='mZDYQ'></bdo><ul id='mZDYQ'></ul>
                  本文介绍了如何创建学说实体的模拟对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试使用 phpunit 为使用学说 2 的模型编写单元测试.我想模拟学说实体,但我真的不知道如何执行此操作.谁能向我解释我需要怎么做?我正在使用 Zend 框架.

                  I'm trying to write a unit test with phpunit for a model that uses doctrine 2. I want to mock the doctrine entities but I really don't have a clue of how to do this. Can anyone explain to me how I need to do this? I'm using Zend Framework.

                  需要测试的模型

                  class Country extends App_Model
                  {
                      public function findById($id)
                      {
                          try {
                              return $this->_em->find('EntitiesCountry', $id);
                          } catch (DoctrineORMORMException $e) {
                              return NULL;
                          }
                      }
                  
                      public function findByIso($iso)
                      {
                          try {
                              return $this->_em->getRepository('EntitiesCountry')->findOneByIso($iso);
                          } catch (DoctrineORMORMException $e) {
                              return NULL;
                          }
                      }
                  }
                  

                  Bootstrap.php

                  protected function _initDoctrine()
                  {
                      Some configuration of doctrine
                      ... 
                      // Create EntityManager
                      $em = EntityManager::create($connectionOptions, $dcConf);
                      Zend_Registry::set('EntityManager', $em);
                  }
                  

                  扩展模型

                  class App_Model
                  {
                      // Doctrine 2.0 entity manager
                      protected $_em;
                  
                      public function __construct()
                      {
                          $this->_em = Zend_Registry::get('EntityManager');
                      }
                  }
                  

                  推荐答案

                  Doctrine 2 实体应该像任何旧类一样对待.您可以像 PHPUnit 中的任何其他对象一样模拟它们.

                  Doctrine 2 Entities should be treated like any old class. You can mock them just like any other object in PHPUnit.

                  $mockCountry = $this->getMock('Country');
                  

                  从 PHPUnit 5.4 开始,getMock() 方法已被弃用.请改用 createMock() 或 getMockbuilder().

                  As of PHPUnit 5.4, the method getMock() has been depricated. Use createMock() or getMockbuilder() instead.

                  正如@beberlei 所指出的,您在 Entity 类本身中使用 EntityManager,这会产生许多棘手的问题,并且破坏了 Doctrine 2 的主要目的之一,即 Entity 不关心自己的持久性.这些查找"方法确实属于 存储库类.

                  As @beberlei noted, you are using the EntityManager inside the Entity class itself, which creates a number of sticky problems, and defeats one of the major purposes of Doctrine 2, which is that Entity's aren't concerned with their own persistance. Those 'find' methods really belong in a repository class.

                  这篇关于如何创建学说实体的模拟对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                      <tbody id='SEPKO'></tbody>
                    <i id='SEPKO'><tr id='SEPKO'><dt id='SEPKO'><q id='SEPKO'><span id='SEPKO'><b id='SEPKO'><form id='SEPKO'><ins id='SEPKO'></ins><ul id='SEPKO'></ul><sub id='SEPKO'></sub></form><legend id='SEPKO'></legend><bdo id='SEPKO'><pre id='SEPKO'><center id='SEPKO'></center></pre></bdo></b><th id='SEPKO'></th></span></q></dt></tr></i><div id='SEPKO'><tfoot id='SEPKO'></tfoot><dl id='SEPKO'><fieldset id='SEPKO'></fieldset></dl></div>
                    <legend id='SEPKO'><style id='SEPKO'><dir id='SEPKO'><q id='SEPKO'></q></dir></style></legend>
                    • <bdo id='SEPKO'></bdo><ul id='SEPKO'></ul>

                          1. <tfoot id='SEPKO'></tfoot>
                          2. <small id='SEPKO'></small><noframes id='SEPKO'>