Skip to content

Commit

Permalink
Closes #4590
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 24, 2021
1 parent 30224cb commit 9459507
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions ChangeLog-9.5.md
Expand Up @@ -2,6 +2,12 @@

All notable changes of the PHPUnit 9.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.

## [9.5.2] - 2021-MM-DD

### Fixed

* [#4590](https://github.com/sebastianbergmann/phpunit/issues/4590): `--coverage-text` CLI option is documented wrong

## [9.5.1] - 2021-01-17

### Fixed
Expand All @@ -21,5 +27,6 @@ All notable changes of the PHPUnit 9.5 release series are documented in this fil

* [#4535](https://github.com/sebastianbergmann/phpunit/issues/4535): `getMockFromWsdl()` does not handle methods that do not have parameters correctly

[9.5.2]: https://github.com/sebastianbergmann/phpunit/compare/9.5.1...9.5
[9.5.1]: https://github.com/sebastianbergmann/phpunit/compare/9.5.0...9.5.1
[9.5.0]: https://github.com/sebastianbergmann/phpunit/compare/9.4.4...9.5.0
2 changes: 1 addition & 1 deletion src/TextUI/Help.php
Expand Up @@ -40,7 +40,7 @@ final class Help
['arg' => '--coverage-crap4j <file>', 'desc' => 'Generate code coverage report in Crap4J XML format'],
['arg' => '--coverage-html <dir>', 'desc' => 'Generate code coverage report in HTML format'],
['arg' => '--coverage-php <file>', 'desc' => 'Export PHP_CodeCoverage object to file'],
['arg' => '--coverage-text <file>', 'desc' => 'Generate code coverage report in text format [default: standard output]'],
['arg' => '--coverage-text=<file>', 'desc' => 'Generate code coverage report in text format [default: standard output]'],
['arg' => '--coverage-xml <dir>', 'desc' => 'Generate code coverage report in PHPUnit XML format'],
['arg' => '--coverage-cache <dir>', 'desc' => 'Cache static analysis results'],
['arg' => '--warm-coverage-cache', 'desc' => 'Warm static analysis cache'],
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/cli/_files/output-cli-help-color.txt
Expand Up @@ -12,7 +12,7 @@
--coverage-html <dir>  Generate code coverage report in HTML
format
--coverage-php <file>  Export PHP_CodeCoverage object to file
--coverage-text <file>  Generate code coverage report in text
--coverage-text=<file>  Generate code coverage report in text
format [default: standard output]
--coverage-xml <dir>  Generate code coverage report in PHPUnit
XML format
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/cli/_files/output-cli-usage.txt
Expand Up @@ -11,7 +11,7 @@ Code Coverage Options:
--coverage-crap4j <file> Generate code coverage report in Crap4J XML format
--coverage-html <dir> Generate code coverage report in HTML format
--coverage-php <file> Export PHP_CodeCoverage object to file
--coverage-text <file> Generate code coverage report in text format [default: standard output]
--coverage-text=<file> Generate code coverage report in text format [default: standard output]
--coverage-xml <dir> Generate code coverage report in PHPUnit XML format
--coverage-cache <dir> Cache static analysis results
--warm-coverage-cache Warm static analysis cache
Expand Down

0 comments on commit 9459507

Please sign in to comment.