tearDown() protected method

See also: PHPUnit_Framework_TestCase::tearDown()
protected tearDown ( )
Beispiel #1
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->env = null;
     $this->user = null;
     error_reporting($this->errorLevel);
     parent::tearDown();
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->environment = null;
     $this->container = null;
     parent::tearDown();
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     unset($this->environment);
     parent::tearDown();
 }
Beispiel #4
0
 /**
  * {@inheritdoc}
  * @see Scalr\Tests.TestCase::tearDown()
  */
 protected function tearDown()
 {
     parent::tearDown();
 }
Beispiel #5
0
 /**
  * Tears down the fixture - unset Azure instance.
  *
  * This method is called after a test is executed.
  */
 protected function tearDown()
 {
     unset($this->azure, $this->testEnv);
     parent::tearDown();
 }