/phpunit-extensions

Extensions for PHPUnit for Humbug

Primary LanguagePHPBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

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>