selrahcd/phpunit-test-run-logger

A test run logger for PHPUnit. Records the results of test runs for improving TDD workflow.

v1.0 2022-08-19 17:00 UTC

This package is auto-updated.

Last update: 2024-04-19 21:02:59 UTC


README

This is a test run logger.

After each test run it logs if the run was passing or failing.

This is useful during a Dojo session, where you want to practice and reflect on the way you've used TDD during a code kata.

Install

  1. Install with composer composer require --dev selrahcd/phpunit-test-run-logger

  2. Configure PHPUnit to use the extensions, in phpunit.xml add

    <extensions>
        <extension class="Selrahcd\PhpunitTestRunLogger\TestRunLogger">
        </extension>
    </extensions>