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


PHP CakeTestCase::end方法代码示例

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


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

示例1: end

 function end()
 {
     parent::end();
     $Cleanup = new Folder(TMP . 'tests/svn');
     if ($Cleanup->pwd() == TMP . 'tests/svn') {
         $Cleanup->delete();
     }
 }
开发者ID:Theaxiom,项目名称:chaw-source,代码行数:8,代码来源:svn.test.php

示例2: end

 function end()
 {
     // if you comment these 2 lines you will be able to see the test images successfully duplicated over
     // to the folder webroot/uploads/meiomodel
     $folder =& new Folder(WWW_ROOT . 'uploads' . DS . DESTINATION_TEST_IMAGE_FOLDER_FOR_MEIODUPLICATE);
     $folder->delete();
     parent::end();
 }
开发者ID:simkimsia,项目名称:MeioDuplicate,代码行数:8,代码来源:meio_duplicate.test.php

示例3: end

 function end()
 {
     parent::end();
     Configure::write('debug', $this->debug);
 }
开发者ID:kaz0636,项目名称:openflp,代码行数:5,代码来源:model.test.php

示例4: end

 /**
  * Make sure all fixtures tables are being dropped
  *
  * @access public
  */
 function end()
 {
     $this->db->simulate = false;
     parent::end();
     $this->db->simulate = true;
 }
开发者ID:kevinmel2000,项目名称:Study-Buddy---CakePHP-Quiz-System,代码行数:11,代码来源:dbo_mssql.test.php

示例5: end

 function end()
 {
     $folder =& new Folder(WWW_ROOT . 'uploads' . DS . 'meiomodel');
     $folder->delete();
     parent::end();
 }
开发者ID:johnulist,项目名称:adrotator,代码行数:6,代码来源:meio_upload.test.php

示例6: end

 function end()
 {
     $this->__shutdownController();
     parent::end();
 }
开发者ID:hiromi2424,项目名称:TransitionComponent,代码行数:5,代码来源:transition.test.php

示例7: end

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

示例8: end

 public function end()
 {
     Configure::write('Database.logSQL', 0);
     parent::end();
     Configure::write('Database.logSQL', 2);
 }
开发者ID:kaz0636,项目名称:openflp,代码行数:6,代码来源:cake_test_case_ext.php


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