From ff9d437511d78f0c172af897335a3f37f60b735d Mon Sep 17 00:00:00 2001 From: "J. King" Date: Fri, 8 Dec 2017 15:19:14 -0500 Subject: [PATCH] Update test-running examples --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 59527c1..1ee3cd4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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" ```