public function tearDown()
 {
     parent::tearDown();
     # remove all the temp files
     exec('rm -rf ' . $this->getPath());
     $this->consoleOutput = '';
 }
示例#2
0
 public function tearDown()
 {
     if (file_exists($this->jsonDocsFile())) {
         unlink($this->jsonDocsFile());
         rmdir(config('l5-swagger.paths.docs'));
     }
     parent::tearDown();
 }
示例#3
0
 public function tearDown()
 {
     parent::tearDown();
     m::close();
     unlink(__DIR__ . '/themes/default/hello.php');
     rmdir(__DIR__ . '/themes/default');
     rmdir(__DIR__ . '/themes');
     unlink(__DIR__ . '/views/login.php');
     rmdir(__DIR__ . '/views');
 }
 /**
  * Destroy the test environment
  */
 public function tearDown()
 {
     parent::tearDown();
     \Mockery::close();
 }
示例#5
0
 protected function tearDown()
 {
     parent::tearDown();
     Mockery::close();
 }
 public function tearDown()
 {
     parent::tearDown();
     m::close();
 }
示例#7
0
 public function tearDown()
 {
     parent::tearDown();
 }
示例#8
0
 public function tearDown()
 {
     parent::tearDown();
     Tree::__resetBootedStaticProperty();
 }
示例#9
0
 public function tearDown()
 {
     parent::tearDown();
     exec('rm -rf ' . __DIR__ . '/temp/*');
     $this->consoleOutput = '';
 }