atoum: add page (#3024)

* atoum: add page

* atoum: update example tokens for filenames
italian
Owen Voke 2019-05-15 21:54:23 +01:00 committed by Lucas Gabriel Schneider
parent ee6cae9f04
commit 30b9eabe3d
1 changed files with 36 additions and 0 deletions

36
pages/common/atoum.md Normal file
View File

@ -0,0 +1,36 @@
# atoum
> A simple, modern and intuitive unit testing framework for PHP.
> Homepage: <https://atoum.org>.
- Initialise a configuration file:
`atoum --init`
- Run all tests:
`atoum`
- Run tests using the specified configuration file:
`atoum -c {{path/to/file}}`
- Run a specific test file:
`atoum -f {{path/to/file}}`
- Run a specific directory of tests:
`atoum -d {{path/to/directory}}`
- Run all tests under a specific namespace:
`atoum -ns {{namespace}}`
- Run all tests with a specific tag:
`atoum -t {{tag}}`
- Load a custom bootstrap file before running tests:
`atoum --bootstrap-file {{path/to/file}}`