copacetic / test-printer
Make the console output useful while the tests are running.
Installs: 140
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
pkg:composer/copacetic/test-printer
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2019-02-20 19:43:20 UTC
README
Defenestrator Test Printer
Rather than see a string of dots and letters, get some darn information as your tests are running.
Installation
Install Defenestrator Test Result Printer with composer:
composer require --dev defenestrator/test-printer
You may alternatively include the project in your composer.json:
{
"require-dev": {
"defenestrator/test-printer": ">=3.0.0"
}
}
If you don't use composer, you can simply download and save TestResultPrinter.php wherever you want.
You should seriously use composer, dork.
Usage
To use the TestResultPrinter class, specify it in the root <phpunit> element of phpunit.xml.
<phpunit
colors="true"
printerClass="Defenestrator\TestResultPrinter"
>
...
</phpunit>

