You are here

protected function CacheTest::tearDown in Apigee Edge 8

Overrides WebDriverTestBase::tearDown

File

tests/src/FunctionalJavascript/CacheTest.php, line 95

Class

CacheTest
Apigee Edge entity cache related tests.

Namespace

Drupal\Tests\apigee_edge\FunctionalJavascript

Code

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