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


PHP MyCakeTestCase::tearDown方法代码示例

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


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

示例1: tearDown

 public function tearDown()
 {
     $this->ZipLib->close();
     foreach ($this->testFiles as $file => $content) {
         unlink(TMP . $file);
     }
     $this->_rrmdir(TMP . 'xyz');
     $this->_rrmdir(TMP . 'xyz2');
     parent::tearDown();
 }
开发者ID:Jony01,项目名称:LLD,代码行数:10,代码来源:ZipLibTest.php

示例2: tearDown

 /**
  * TearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     unset($this->Qurls);
     parent::tearDown();
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:10,代码来源:QurlsControllerTest.php

示例3: tearDown

 public function tearDown()
 {
     unlink(TMP . 'acl.ini');
     parent::tearDown();
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:5,代码来源:TinyAuthorizeTest.php

示例4: tearDown

 /**
  * TearDown method
  */
 public function tearDown()
 {
     parent::tearDown();
     unset($this->Gravatar);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:8,代码来源:GravatarHelperTest.php

示例5: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Numeric);
 }
开发者ID:Jony01,项目名称:LLD,代码行数:5,代码来源:NumericHelperTest.php

示例6: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Imap);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:5,代码来源:ImapLibTest.php

示例7: tearDown

 /**
  * TearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     unset($this->KeyValue);
     parent::tearDown();
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:10,代码来源:KeyValueTest.php

示例8: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Model);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:5,代码来源:DecimalInputBehaviorTest.php

示例9: tearDown

 public function tearDown()
 {
     parent::tearDown();
 }
开发者ID:Jony01,项目名称:LLD,代码行数:4,代码来源:CustomFindsBehaviorTest.php

示例10: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Comment);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:5,代码来源:CaptchaBehaviorTest.php

示例11: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->SpellLib);
 }
开发者ID:Jony01,项目名称:LLD,代码行数:5,代码来源:SpellLibTest.php

示例12: tearDown

 /**
  * TearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     unset($this->Flash);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:10,代码来源:FlashHelperTest.php

示例13: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Format);
 }
开发者ID:Jony01,项目名称:LLD,代码行数:5,代码来源:FormatHelperTest.php

示例14: tearDown

 /**
  * TearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     unset($this->QrCode);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:10,代码来源:QrCodeHelperTest.php

示例15: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->Captcha);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:5,代码来源:CaptchaLibTest.php


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