2019-05-15 21:54:23 +01:00
|
|
|
# atoum
|
|
|
|
|
|
|
|
> A simple, modern and intuitive unit testing framework for PHP.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <http://atoum.org>.
|
2019-05-15 21:54:23 +01:00
|
|
|
|
2022-06-27 11:23:12 +01:00
|
|
|
- Initialize a configuration file:
|
2019-05-15 21:54:23 +01:00
|
|
|
|
|
|
|
`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}}`
|