Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,19 +1,19 @@
# phpunit
> PHPUnit command-line test runner
> PHPUnit command-line test runner.
- Run tests in the current direcotry. Note: Expects you to have a 'phpunit.xml'
- Run tests in the current direcotry. Note: Expects you to have a 'phpunit.xml':
`phpunit`
- Run tests in a specific file.
- Run tests in a specific file:
`phpunit {{path/to/TestFile.php}}`
- Run tests annotated with the given group.
- Run tests annotated with the given group:
`phpunit --group {{name}}`
- Run tests and generate a coverage report in HTML.
- Run tests and generate a coverage report in HTML:
`phpunit --coverage-html {{directory}}`