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?
- What are PHPUnit required extensions
- How to install PHPUnit with a PHAR file?
- How to install PHPUnit from Packagist?
- How to run tests in parallel with PHPUnit?
- How to order tests with PHPUnit?
- How to mock a static method with PHPUnit?
- How to generate a JUnit report in PHPUnit?
- How to mock a query builder with PHPUnit?
- How to mock an interface in PHPUnit?
See more codes...