selrahcd / phpunit-test-run-logger
A test run logger for PHPUnit. Records the results of test runs for improving TDD workflow.
Installs: 58
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/selrahcd/phpunit-test-run-logger
Requires
- php: 7.4|8.0
- phpunit/phpunit: ^9.5
Requires (Dev)
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.8
- phpstan/phpstan-phpunit: ^1.1
- phpunit/phpunit: ^9.5
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
- 
Install with composer composer require --dev selrahcd/phpunit-test-run-logger
- 
Configure PHPUnit to use the extensions, in phpunit.xmladd
<extensions> <extension class="Selrahcd\PhpunitTestRunLogger\TestRunLogger"> </extension> </extensions>