phpunitHow to run PHPUnit in quiet mode?
To run PHPUnit in quiet mode, use the --quiet
flag.
Example
phpunit --quiet
This will run PHPUnit without any output.
Code explanation
phpunit
: The command to run PHPUnit--quiet
: The flag to run PHPUnit in quiet mode
Helpful links
More of Phpunit
- How to show warnings in PHPUnit?
- How to skip a PHPUnit test?
- How to log to the console with PHPUnit?
- How to use the PHPUnit Framework TestCase?
- How to install PHPUnit with a PHAR file?
- How to test private methods in PHPUnit?
- How to use a data provider in PHPUnit?
- How to stop PHPUnit on failure?
- How to install PHPUnit from Packagist?
See more codes...