コード例 #1
0
ファイル: svn.test.php プロジェクト: Theaxiom/chaw-source
 function end()
 {
     parent::end();
     $Cleanup = new Folder(TMP . 'tests/svn');
     if ($Cleanup->pwd() == TMP . 'tests/svn') {
         $Cleanup->delete();
     }
 }
コード例 #2
0
 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();
 }
コード例 #3
0
ファイル: model.test.php プロジェクト: kaz0636/openflp
 function end()
 {
     parent::end();
     Configure::write('debug', $this->debug);
 }
 /**
  * Make sure all fixtures tables are being dropped
  *
  * @access public
  */
 function end()
 {
     $this->db->simulate = false;
     parent::end();
     $this->db->simulate = true;
 }
コード例 #5
0
 function end()
 {
     $folder =& new Folder(WWW_ROOT . 'uploads' . DS . 'meiomodel');
     $folder->delete();
     parent::end();
 }
コード例 #6
0
 function end()
 {
     $this->__shutdownController();
     parent::end();
 }
 public function end()
 {
     parent::end();
     $this->logMethodCall(__FUNCTION__);
 }
コード例 #8
0
 public function end()
 {
     Configure::write('Database.logSQL', 0);
     parent::end();
     Configure::write('Database.logSQL', 2);
 }