コード例 #1
0
ファイル: OvenTest.php プロジェクト: shama/oven
 /**
  * tearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     $this->_clearTables(array('pages'));
     $this->_clearFiles();
     unset($this->Oven);
 }
コード例 #2
0
ファイル: OvenConfigTest.php プロジェクト: shama/oven
 /**
  * tearDown method
  *
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     if (file_exists($this->path . 'oven.php')) {
         unlink($this->path . 'oven.php');
     }
     if (file_exists($this->path . 'oven.json')) {
         unlink($this->path . 'oven.json');
     }
 }
コード例 #3
0
ファイル: InitTest.php プロジェクト: shama/oven
 /**
  * tearDown method
  * @return void
  */
 public function tearDown()
 {
     unset($this->Init);
     parent::tearDown();
 }
コード例 #4
0
ファイル: PhpBakerTest.php プロジェクト: shama/oven
 /**
  * tearDown method
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     $this->_clearFiles();
 }