summaryrefslogtreecommitdiff
path: root/phpunit.xml
diff options
context:
space:
mode:
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpunit.xml b/phpunit.xml
index a2c5ea5..3ccde8e 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
- cacheDirectory=".phpunit.cache"
+ cacheDirectory=".cache/phpunit"
executionOrder="depends,defects"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="false"
@@ -15,8 +15,8 @@
>
<testsuites>
- <testsuite name="default">
- <directory>tests</directory>
+ <testsuite name="integration">
+ <directory>tests/Integration</directory>
</testsuite>
</testsuites>
@@ -27,6 +27,6 @@
</source>
<extensions>
- <bootstrap class="Tests\PHPUnit\Extensions\ServerExtension\ServerExtension" />
+ <bootstrap class="Tests\Integration\Extensions\ServerExtension\ServerExtension" />
</extensions>
</phpunit>