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 skip a PHPUnit test?
- How to mock a method with different arguments in PHPUnit?
- How to show warnings in PHPUnit?
- How to run only certain methods in PHPUnit?
- How to use hooks in PHPUnit?
- How to order tests with PHPUnit?
- How to mock an interface in PHPUnit?
- How to test private methods in PHPUnit?
- How to increase memory limit in PHPUnit?
- How to mock a static method with PHPUnit?
See more codes...