This is a fork from the DotReporter of Codeception and adds some fancy enhancements that make it behave more like PHPUnit's reporter.
- Codeception 2.3+
- PHP 5.4+
.......... 10 / 75 ( 13%)
.......... 20 / 75 ( 28%)
.......... 30 / 75 ( 40%)
.......... 40 / 75 ( 54%)
.......... 50 / 75 ( 67%)
.......... 60 / 75 ( 80%)
.......... 70 / 75 ( 94%)
..... 75 / 75 (100%)
Time: 2.07 seconds, Memory: 20.00MB
OK (75 tests, 124 assertions). when the test succeeds.
F when an assertion fails while running the test method.
E when an error occurs while running the test method.
S when the test has been skipped.
I when the test is marked as being incomplete or not yet implemented.
- Install using composer
composer require --dev cloudstek/codeception-fancy-dot-reporter- Enable the extension (see usage).
- Clone the repository or download and extract the latest release.
- Require the
src/DotReporter.phpfile intests/_bootstrap.php - Enable the extension (see usage).
To enable the extension specify it with —ext or add it to the list of enabled extensions in your codeception.yml.
With —ext option:
vendor/bin/codeception run --ext "Cloudstek\Codeception\Extension\DotReporter"With codeception.yml:
extensions:
enabled:
- Cloudstek\Codeception\Extension\DotReporterSee the official documentation on how to configure Codeception extensions. See the list below for available options.
Type: integer
Number of columns to use for progress output. Defaults to the width of the output console, which is always the max.
See LICENSE