Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

humbug/phpunit-extensions

Repository files navigation

Humbug PHPUnit Extensions

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>