From 43c7ba13a7f8841653d54fb8f0c2a7b0206fd589 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 31 Jul 2018 11:19:11 +0200 Subject: [PATCH] Update tests.md --- quality/tests.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quality/tests.md b/quality/tests.md index 57c37ef..c24e018 100644 --- a/quality/tests.md +++ b/quality/tests.md @@ -9,13 +9,13 @@ This application uses PHPUnit as unit testing framework. The PHPUnit directory i In order to run all tests and also creating the dummy data for UI tests, execute the following command: ```sh -php phpunit.phar -c Tests/PHPUnit/phpunit_no_coverage.xml +php phpunit.phar -c tests/PHPUnit/phpunit_no_coverage.xml ``` In order to also create a code coverage report run: ```sh -php phpunit.phar -c Tests/PHPUnit/phpunit_default.xml +php phpunit.phar -c tests/PHPUnit/phpunit_default.xml ``` ### Modules @@ -24,4 +24,4 @@ Every module needs to have a `Admin` directory containing a class called `AdminT ## Jasmine -The javascript testing is done with jasmine. The javascript testing directory is structured the same way as the `Framework`. Unit tests for specific classes need to be named in the same manner as the testing class. \ No newline at end of file +The javascript testing is done with jasmine. The javascript testing directory is structured the same way as the `Framework`. Unit tests for specific classes need to be named in the same manner as the testing class.