diff --git a/.travis.yml b/.travis.yml index fcb84c7..ca49bf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,11 +45,6 @@ script: echo "Running the unit tests"; composer ci:tests:unit; -- > - echo; - echo "Running the model tests"; - .Build/vendor/bin/phpunit -c Configuration/PHPUnit/ModelTests.xml; - - > echo; echo "Running the functional tests"; diff --git a/Configuration/PHPUnit/ModelTests.xml b/Configuration/PHPUnit/ModelTests.xml deleted file mode 100644 index a8cdd3b..0000000 --- a/Configuration/PHPUnit/ModelTests.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - ../../Tests/Unit/Domain/Model - - - diff --git a/README.md b/README.md index cc6996c..d8f6a3f 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,6 @@ In the Run configurations, copy the PHPUnit configuration and use these settings - [x] Use alternative configuration file - use `.Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml` -### Example PHPUnit configuration file with a test suite - -The file [`Configuration/PHPUnit/ModelTests.xml`](Configuration/PHPUnit/ModelTests.xml) -contains an example of a PHPUnit configuration file that has a test suite -(based on the unit tests configuration file from the testing framework). - ## Creating new extensions with automated tests For creating new extensions, I recommend taking