You are here

protected function QueryTest::tearDown in Apigee Edge 8

Overrides BrowserTestBase::tearDown

File

tests/src/Functional/QueryTest.php, line 109

Class

QueryTest
Developer and developer app entity query test.

Namespace

Drupal\Tests\apigee_edge\Functional

Code

protected function tearDown() {
  foreach ($this->edgeDevelopers as $developer) {
    try {
      if ($developer !== NULL) {
        $developer
          ->delete();
      }
    } catch (\Exception $exception) {
      $this
        ->logException($exception);
    }
  }
  parent::tearDown();
}