You are here

protected function TestFrameworkKernelTest::tearDown in Apigee Edge 8

Overrides KernelTestBase::tearDown

File

tests/src/Kernel/TestFrameworkKernelTest.php, line 271

Class

TestFrameworkKernelTest
Tests the testing framework for testing offline.

Namespace

Drupal\Tests\apigee_edge\Kernel

Code

protected function tearDown() {
  if ($this->integration_enabled && !empty($this->developers)) {
    foreach ($this->developers as $developer) {
      $developer
        ->delete();
    }
  }
  parent::tearDown();
}