當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。