summaryrefslogtreecommitdiff
path: root/phpunit.xml
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-11-28 15:43:51 +0100
committerGitHub <noreply@github.com>2017-11-28 15:43:51 +0100
commit599f2fd264bfc7b1b6826fe206442806e317340f (patch)
tree50cf84d7d07d11bd65b45c2c17f37632f6cd8eff /phpunit.xml
parenta5fc5bd0979e8de1fce8a8addd351a6e7bd6aeb8 (diff)
parenteda7f7788ea8012bd8be46405c56a666c11f3fa5 (diff)
Merge pull request #365 from engelsystem/feature-igel-rewrite
Feature igel rewrite
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml39
1 files changed, 17 insertions, 22 deletions
diff --git a/phpunit.xml b/phpunit.xml
index 5b6d97a1..98e64795 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -1,24 +1,19 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
- backupGlobals="false"
- bootstrap="./includes/engelsystem_provider.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false">
- <testsuites>
- <testsuite name="Models">
- <directory>./test/model/</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory>./include/</directory>
- <directory>./public/</directory>
- </whitelist>
- </filter>
- <php>
- <const name="PHPUNIT_TESTSUITE" value="true" />
- </php>
+ bootstrap="./tests/autoload.php"
+ xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.3/phpunit.xsd"
+ colors="true"
+>
+ <testsuites>
+ <testsuite name="Feature">
+ <directory>./tests/Feature</directory>
+ </testsuite>
+ <testsuite name="Unit">
+ <directory>./tests/Unit</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist>
+ <directory>./src/</directory>
+ </whitelist>
+ </filter>
</phpunit>