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\FunctionalJavascriptCode
protected function tearDown() {
if ($this->developer !== NULL) {
try {
$this->developer
->delete();
} catch (\Exception $exception) {
$this
->logException($exception);
}
}
parent::tearDown();
}