コード例 #1
0
ファイル: LoaderTest.php プロジェクト: visor/nano
 protected function tearDown()
 {
     set_include_path($this->includePath);
     unset($this->includePath);
     parent::tearDown();
 }
コード例 #2
0
ファイル: RunTest.php プロジェクト: visor/nano
 protected function tearDown()
 {
     rename($this->application->rootDir . DIRECTORY_SEPARATOR . 'settings' . DIRECTORY_SEPARATOR . \Nano\Application\Config::CONFIG_FILE_NAME . '.bak', $this->application->rootDir . DIRECTORY_SEPARATOR . 'settings' . DIRECTORY_SEPARATOR . \Nano\Application\Config::CONFIG_FILE_NAME);
     rename($this->application->rootDir . DIRECTORY_SEPARATOR . 'settings' . DIRECTORY_SEPARATOR . \Nano\Application\Config::ROUTES_FILE_NAME . '.bak', $this->application->rootDir . DIRECTORY_SEPARATOR . 'settings' . DIRECTORY_SEPARATOR . \Nano\Application\Config::ROUTES_FILE_NAME);
     parent::tearDown();
 }