tearDown() 보호된 메소드

또한 보기: PHPUnit_Framework_TestCase::tearDown()
protected tearDown ( )
예제 #1
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->env = null;
     $this->user = null;
     error_reporting($this->errorLevel);
     parent::tearDown();
 }
예제 #2
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->environment = null;
     $this->container = null;
     parent::tearDown();
 }
예제 #3
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     unset($this->environment);
     parent::tearDown();
 }
예제 #4
0
 /**
  * {@inheritdoc}
  * @see Scalr\Tests.TestCase::tearDown()
  */
 protected function tearDown()
 {
     parent::tearDown();
 }
예제 #5
0
파일: AzureTest.php 프로젝트: mheydt/scalr
 /**
  * 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();
 }