-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
executable file
·48 lines (47 loc) · 1.96 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Module Tests">
<directory suffix="Test.php">./src/Modules/*/Tests</directory>
</testsuite>
<testsuite name="Foundation Tests">
<directory suffix="Test.php">./src/Foundation/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/Modules</directory>
<directory suffix=".php">./src/Foundation</directory>
<exclude>
<directory suffix=".php">./src/Modules/*/Routes</directory>
<directory suffix=".php">./src/Modules/*/Resources</directory>
<directory suffix=".php">./src/Modules/*/Database</directory>
<directory suffix=".php">./src/Modules/*/Tests</directory>
<directory suffix=".php">./src/Foundation/Routes</directory>
<directory suffix=".php">./src/Foundation/Tests</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="APP_DEBUG" value="true"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="redis"/>
<env name="BROADCAST_DRIVER" value="log"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
<env name="REDIS_DB" value="2"/>
<env name="REDIS_CACHE_DB" value="3"/>
<env name="MONGODB_DB_DATABASE" value="testing"/>
<env name="DB_DATABASE" value="testing"/>
<env name="MODEL_CACHING" value="true"/>
</php>
</phpunit>