phpunitHow to use a listener with PHPUnit?
PHPUnit provides a listener interface which allows you to customize the behavior of the test suite. To use a listener with PHPUnit, you need to implement the PHPUnit_Framework_TestListener interface.
Example code
<?php
use PHPUnit\Framework\TestListener;
class MyListener implements TestListener
{
public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
{
// Do something before the test suite starts
}
public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
{
// Do something after the test suite ends
}
}
The example code above implements a listener that will execute code before and after the test suite starts and ends.
To use the listener, you need to register it with the test suite. This can be done by passing an instance of the listener to the addListener() method of the PHPUnit_Framework_TestSuite class.
Example code
<?php
$suite = new PHPUnit_Framework_TestSuite();
$listener = new MyListener();
$suite->addListener($listener);
The example code above registers the MyListener instance with the test suite.
Helpful links
More of Phpunit
- How to show warnings in PHPUnit?
- How to run tests in parallel with PHPUnit?
- How to stop PHPUnit on failure?
- How to skip a PHPUnit test?
- What are PHPUnit required extensions
- How to order tests with PHPUnit?
- How to run all PHPUnit tests?
- How to run PHPUnit in quiet mode?
- How to install PHPUnit from Packagist?
- How to install PHPUnit with a PHAR file?
See more codes...