Beispiel #1
0
 /**
  * tearDown
  *
  * @return void
  * @access protected
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function tearDown()
 {
     parent::tearDown();
     $this->doRestoreDb();
 }
Beispiel #2
0
 /**
  * tearDown
  *
  * @return void
  * @access protected
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function tearDown()
 {
     parent::tearDown();
     // Not needed right now
     $this->doRestoreDb();
 }
Beispiel #3
0
 protected function tearDown()
 {
     $this->clearEntity($this->formId);
     parent::tearDown();
 }
Beispiel #4
0
 /**
  * tearDown
  *
  * @return void
  * @see    ____func_see____
  * @since  1.0.22
  */
 protected function tearDown()
 {
     xdebug_stop_code_coverage(false);
     if (!empty($this->orders)) {
         foreach ($this->orders as $order) {
             $this->clearEntity($order);
         }
     }
     if ($this->order) {
         $this->clearEntity($this->order);
     }
     $this->order = null;
     xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
     parent::tearDown();
 }
Beispiel #5
0
 protected function tearDown()
 {
     $this->product = null;
     $this->doRestoreDb();
     parent::tearDown();
 }