Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

README.md

PHPUnit Extra

PHPUnit Extra provides a PHPUnit listener to improve performance of your PHPUnit test suites by cleaning up classes variables at the end of each TestCase. Thanks Kris Wallsmith for this tip.

Installation

Step 1: Install the library

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require --dev theodo/phpunit-extra

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Configure the listener in PHPUnit

For PHPUnit >= 7.5, add the extension in your XML config file (e.g. phpunit.xml.dist).

<extensions>
    <extension class="\Theodo\PHPUnitExtra\PHPUnit\PHPUnitExtension" />
</extensions>

For PHPUnit < 7.5 add the listener in your XML config file (e.g. phpunit.xml.dist).

<listeners>
    <listener class="\Theodo\PHPUnitExtra\PHPUnit\PHPUnitListener" />
</listeners>

About

Improve the performance of your PHPUnit test suite

Topics

Resources

Packages

No packages published

Languages

You can’t perform that action at this time.