mirror of https://github.com/CrimsonTome/tldr.git
20 lines
376 B
Markdown
20 lines
376 B
Markdown
# phpunit
|
|
|
|
> PHPUnit command-line test runner.
|
|
|
|
- Run tests in the current directory. Note: Expects you to have a 'phpunit.xml':
|
|
|
|
`phpunit`
|
|
|
|
- Run tests in a specific file:
|
|
|
|
`phpunit {{path/to/TestFile.php}}`
|
|
|
|
- Run tests annotated with the given group:
|
|
|
|
`phpunit --group {{name}}`
|
|
|
|
- Run tests and generate a coverage report in HTML:
|
|
|
|
`phpunit --coverage-html {{directory}}`
|