You are here

public function UnitTest::tearDown in TacJS 8

Once test method has finished running, whether it succeeded or failed, tearDown() will be invoked. Unset the $unit object.

File

tests/src/Unit/UnitTest.php, line 73

Class

UnitTest
Simple test to ensure that asserts pass.

Namespace

Drupal\tacjs

Code

public function tearDown() {
  unset($this->unit);
}