tearDown() protected method

See also: PHPUnit_Framework_TestCase::tearDown()
protected tearDown ( )
コード例 #1
0
ファイル: WebTestCase.php プロジェクト: recipe/scalr
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->env = null;
     $this->user = null;
     error_reporting($this->errorLevel);
     parent::tearDown();
 }
コード例 #2
0
ファイル: AwsTestCase.php プロジェクト: sacredwebsite/scalr
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     $this->environment = null;
     $this->container = null;
     parent::tearDown();
 }
コード例 #3
0
ファイル: OpenStackTestCase.php プロジェクト: rickb838/scalr
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     unset($this->environment);
     parent::tearDown();
 }
コード例 #4
0
ファイル: CloudynTest.php プロジェクト: mheydt/scalr
 /**
  * {@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();
 }