You are here

public function FixtureContext::tearDown in Lightning Core 8.5

Same name and namespace in other branches
  1. 8.3 tests/src/FixtureContext.php \Drupal\Tests\lightning_core\FixtureContext::tearDown()
  2. 8.4 tests/src/FixtureContext.php \Drupal\Tests\lightning_core\FixtureContext::tearDown()

Performs tear-down tasks after a test scenario.

@AfterScenario

Overrides FixtureBase::tearDown

File

tests/src/FixtureContext.php, line 67

Class

FixtureContext
Performs set-up and tear-down tasks before and after test scenarios.

Namespace

Drupal\Tests\lightning_core

Code

public function tearDown() {

  // This pointless if statement is here to evade a too-strict coding
  // standards rule.
  if (TRUE) {
    parent::tearDown();
  }
}