当前位置: 首页>>代码示例>>PHP>>正文


PHP CakeTestCase::endTest方法代码示例

本文整理汇总了PHP中CakeTestCase::endTest方法的典型用法代码示例。如果您正苦于以下问题:PHP CakeTestCase::endTest方法的具体用法?PHP CakeTestCase::endTest怎么用?PHP CakeTestCase::endTest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CakeTestCase的用法示例。


在下文中一共展示了CakeTestCase::endTest方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: endTest

 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->AdminCrud);
     unset($this->User);
     ClassRegistry::flush();
 }
开发者ID:rodrigorm,项目名称:panel,代码行数:7,代码来源:AdminCrudBehaviorTest.php

示例2: endTest

 public function endTest($method = null)
 {
     $this->__shutdownController();
     parent::endTest($method);
 }
开发者ID:42milez,项目名称:cakephp2-blog-tutorial,代码行数:5,代码来源:TransitionComponentTest.php

示例3: endTest

 /**
  *
  *
  * @param unknown $method
  */
 public function endTest($method)
 {
     unset($this->Throttle);
     parent::endTest($method);
 }
开发者ID:beckye67,项目名称:Icing,代码行数:10,代码来源:ThrottleTest.php

示例4: endTest

 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Github);
 }
开发者ID:superstarrajini,项目名称:cakepackages,代码行数:5,代码来源:PackageDataTest.php

示例5: endTest

 /**
  * End test
  *
  * @return void
  * @access public
  */
 public function endTest($method = null)
 {
     unset($this->MockedPluginModel);
     ClassRegistry::flush();
     parent::endTest($method);
 }
开发者ID:jadb,项目名称:cakephp-plugin-callbacks,代码行数:12,代码来源:callbacks.test.php

示例6: endTest

 public function endTest($method)
 {
     ModularAuthUtility::flushObjects();
     parent::endTest($method);
 }
开发者ID:hiromi2424,项目名称:modular_auth,代码行数:5,代码来源:modular_auth_test_case.php

示例7: endTest

 function endTest($method)
 {
     parent::endTest($method);
     ClassRegistry::flush();
 }
开发者ID:BGCX067,项目名称:fake-as3-svn-to-git,代码行数:5,代码来源:amf_callback.test.php

示例8: endTest

 function endTest($method = null)
 {
     ClassRegistry::flush();
     parent::endTest($method);
 }
开发者ID:vuthaiphat,项目名称:CakePHP-Assets,代码行数:5,代码来源:revision.test.php

示例9: endTest

 /**
  * End Test callback
  *
  * @param string $method
  * @return void
  * @access public
  */
 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Article, $this->Content, $this->Page, $this->Asset, $this->Link, $this->Image);
     ClassRegistry::flush();
 }
开发者ID:rcaravita,项目名称:jodeljodel,代码行数:13,代码来源:inheritable.test.php

示例10: endTest

 /**
  * tearDown
  *
  * @return void
  * @access public
  */
 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Session, $this->Content, $this->settings);
 }
开发者ID:sh1omi,项目名称:xlrstats-web-v3,代码行数:11,代码来源:SerializableTest.php

示例11: endTest

 public function endTest($method)
 {
     parent::endTest($method);
     $this->logMethodCall(__FUNCTION__);
 }
开发者ID:nojimage,项目名称:stagehand-testrunner,代码行数:5,代码来源:cake_always_called_methods.test.php

示例12: endTest

 public function endTest($action)
 {
     parent::endTest($action);
     unset($this->SlugArticle);
     ClassRegistry::flush();
 }
开发者ID:rchick,项目名称:syrup,代码行数:6,代码来源:sluggable.test.php

示例13: endTest

 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Upload);
     ClassRegistry::flush();
 }
开发者ID:rodrigorm,项目名称:upload,代码行数:6,代码来源:upload.test.php

示例14: endTest

 /**
  * End Test
  *
  * @return void
  * @access public
  */
 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Cleaner);
 }
开发者ID:sh1omi,项目名称:xlrstats-web-v3,代码行数:11,代码来源:CleanerHelperTest.php

示例15: endTest

 /**
  * (non-PHPdoc)
  * @see cake/tests/lib/CakeTestCase#endTest($method)
  */
 public function endTest($method)
 {
     parent::endTest($method);
     unset($this->Comments);
 }
开发者ID:rodrigorm,项目名称:comments,代码行数:9,代码来源:CommentsControllerTest.php


注:本文中的CakeTestCase::endTest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。