AfterSymfonyListener.php
Same filename in this branch
Namespace
Drupal\TestTools\PhpUnitCompatibility\PhpUnit7File
-
core/
tests/ Drupal/ TestTools/ PhpUnitCompatibility/ PhpUnit7/ AfterSymfonyListener.php
View source
<?php
namespace Drupal\TestTools\PhpUnitCompatibility\PhpUnit7;
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, float $time) : void {
restore_error_handler();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
AfterSymfonyListener | Listens to PHPUnit test runs. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.