phpunitHow to enable verbose mode in PHPUnit?
Verbose mode in PHPUnit can be enabled by using the --verbose flag when running the test suite.
Example
phpunit --verbose
Output example
PHPUnit 8.5.2 by Sebastian Bergmann and contributors.
Runtime: PHP 7.4.3
Configuration: /path/to/phpunit.xml
............................................................ 63 / 63 (100%)
Time: 00:00.073, Memory: 6.00 MB
OK (63 tests, 63 assertions)
The --verbose flag will output more information about the tests being run, such as the number of tests and assertions, the time taken to run the tests, and the memory used.
The --verbose flag can also be combined with other flags, such as --testdox to output the tests in a more readable format.
Example
phpunit --verbose --testdox
Output example
PHPUnit 8.5.2 by Sebastian Bergmann and contributors.
Runtime: PHP 7.4.3
Configuration: /path/to/phpunit.xml
MyTestClass
[x] My first test
[x] My second test
Time: 00:00.073, Memory: 6.00 MB
OK (2 tests, 2 assertions)
Helpful links
More of Phpunit
- How to show warnings in PHPUnit?
- How to stop PHPUnit on failure?
- How to skip a PHPUnit test?
- How to mock a method with different arguments in PHPUnit?
- How to order tests with PHPUnit?
- How to run all PHPUnit tests?
- How to run tests in parallel with PHPUnit?
- How to mock a static method with PHPUnit?
- How to install PHPUnit with a PHAR file?
- How to install PHPUnit from Packagist?
See more codes...