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 mock a static method with PHPUnit?
- How to stop PHPUnit on failure?
- How to show warnings in PHPUnit?
- How to skip a PHPUnit test?
- What are PHPUnit required extensions
- How to run all PHPUnit tests?
- How to clear the PHPUnit cache?
- How to order tests with PHPUnit?
- How to mock a property in PHPUnit?
- How to assert that key exists in an array using PHPUnit?
See more codes...