copacetic / test-printer
This package is abandoned and no longer maintained.
The author suggests using the defenestrator/test-printer package instead.
Make the console output useful while the tests are running.
3.0.2
2018-04-12 13:16 UTC
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>