padraic/phpunit-extensions

This package is abandoned and no longer maintained. No replacement package was suggested.

Collection of Listeners to log and manipulate test run order

1.1.0 2017-09-10 19:14 UTC

This package is not auto-updated.

Last update: 2020-08-21 18:52:14 UTC


README

A collection of extensions intended to allow for:

  • Timing of test and testsuite execution
  • Filter/Reorder test suites using custom filters

Installation

require: {
   "padraic/phpunit-extensions": "~1.0@dev"
}

Configuration

Time Collector Listener

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>