aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpunit.xml
diff options
context:
space:
mode:
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml22
1 files changed, 7 insertions, 15 deletions
diff --git a/phpunit.xml b/phpunit.xml
index 4942aa2..e7dcff0 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
- bootstrap="vendor/autoload.php"
+ bootstrap="infrastructure/Testing/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
@@ -9,25 +9,17 @@
processIsolation="false"
stopOnFailure="false">
<testsuites>
- <testsuite name="Unit">
- <directory suffix="Test.php">./tests/Unit</directory>
- </testsuite>
-
- <testsuite name="Feature">
- <directory suffix="Test.php">./tests/Feature</directory>
- </testsuite>
+ <testsuite name="Api">
+ <directory>./Api/</directory>
+ </testsuite>
+ <testsuite name="Infrastructure">
+ <directory>./infrastructure/</directory>
+ </testsuite>
</testsuites>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">./app</directory>
- </whitelist>
- </filter>
<php>
<env name="APP_ENV" value="testing"/>
- <env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
- <env name="MAIL_DRIVER" value="array"/>
</php>
</phpunit>