コード例 #1
0
ファイル: ProcessTest.php プロジェクト: dorelljames/piwik
 public function tearDown()
 {
     if (is_object($this->process)) {
         $this->process->finishProcess();
     }
     File::reset();
 }
コード例 #2
0
ファイル: OutputTest.php プロジェクト: dorelljames/piwik
 public function tearDown()
 {
     if (is_object($this->output)) {
         $this->output->destroy();
     }
     File::reset();
     parent::tearDown();
 }
コード例 #3
0
 public function tearDown()
 {
     File::reset();
     // make sure the global container exists for the next test case that is executed (since logging can be done
     // before a test sets up an environment)
     $nextTestEnviornment = new Environment($environment = null, array(), $postBootstrappedEvent = false);
     $nextTestEnviornment->init();
     parent::tearDown();
 }
コード例 #4
0
 public function tearDown()
 {
     $this->output->destroy();
     File::reset();
     parent::tearDown();
 }
コード例 #5
0
 public function tearDown()
 {
     $this->process->finishProcess();
     File::reset();
 }