You are here

public function DrupalListener::endTest in Drupal 8

Same name in this branch
  1. 8 core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit7/DrupalListener.php \Drupal\TestTools\PhpUnitCompatibility\PhpUnit7\DrupalListener::endTest()
  2. 8 core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit6/DrupalListener.php \Drupal\TestTools\PhpUnitCompatibility\PhpUnit6\DrupalListener::endTest()

File

core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit7/DrupalListener.php, line 34

Class

DrupalListener
Listens to PHPUnit test runs.

Namespace

Drupal\TestTools\PhpUnitCompatibility\PhpUnit7

Code

public function endTest(Test $test, float $time) : void {
  $this
    ->deprecationEndTest($test, $time);
  $this
    ->componentEndTest($test, $time);
  $this
    ->standardsEndTest($test, $time);
}