You are here

AfterSymfonyListener.php in Drupal 8

File

core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit6/AfterSymfonyListener.php
View source
<?php

namespace Drupal\TestTools\PhpUnitCompatibility\PhpUnit6;

use PHPUnit\Framework\Test;
use PHPUnit\Framework\TestListener;
use PHPUnit\Framework\TestListenerDefaultImplementation;

/**
 * Listens to PHPUnit test runs.
 *
 * @internal
 */
class AfterSymfonyListener implements TestListener {
  use TestListenerDefaultImplementation;

  /**
   * {@inheritdoc}
   */
  public function endTest(Test $test, $time) {
    restore_error_handler();
  }

}

Classes

Namesort descending Description
AfterSymfonyListener Listens to PHPUnit test runs.