A collection of extensions intended to allow for:
- Timing of test and testsuite execution
- Filter/Reorder test suites using custom filters
require: {
"padraic/phpunit-extensions": "~1.0@dev"
}
The Time Collector Listener logs timing data on tests and test suites for use by the time dependent filters. You can enable it using the following phpunit.xml snippet showing the listeners XML block.
<listeners>
<listener class="\Humbug\Phpunit\Listener\TimeCollectorListener">
<arguments>
<object class="\Humbug\Phpunit\Logger\JsonLogger">
<arguments>
<string>/path/to/times.json</string>
</arguments>
</object>
</arguments>
</listener>
</listeners>