1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 05:02:40 +00:00

Update test-running examples

This commit is contained in:
J. King 2017-12-08 15:19:14 -05:00
parent 11f4eed118
commit ff9d437511

View file

@ -51,11 +51,13 @@ To run the test suite, you must have [Composer][d] installed as well as the comm
# first install dependencies
php composer.phar install
# run the tests
./tests/test
./robo test
# run the tests and produce a code coverage report in ./tests/coverage
./robo coverage
```
The example uses Unix syntax, but the test suite also runs in Windows. By default all tests are run; you can pass the same arguments to the test runner [as you would to PHPUnit][e]
``` sh
./tests/test --testsuite "Configuration"
./robo test --testsuite "Configuration"
```