Example #1
0
 public function tearDown()
 {
     if (is_object($this->process)) {
         $this->process->finishProcess();
     }
     File::reset();
 }
Example #2
0
 public function tearDown()
 {
     if (is_object($this->output)) {
         $this->output->destroy();
     }
     File::reset();
     parent::tearDown();
 }
Example #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();
 }
Example #4
0
 public function tearDown()
 {
     $this->output->destroy();
     File::reset();
     parent::tearDown();
 }
Example #5
0
 public function tearDown()
 {
     $this->process->finishProcess();
     File::reset();
 }