This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathphpunit.xml
53 lines (52 loc) · 2.24 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
49
50
51
52
53
<?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="Foundation">
<directory suffix="Test.php">workbench/Collejo/Foundation</directory>
</testsuite>
<testsuite name="AppUnit">
<directory suffix="Test.php">workbench/Collejo/App/Modules/*/Tests/Unit</directory>
<directory suffix="Test.php">workbench/Collejo/App/Http/Tests/Unit</directory>
</testsuite>
<testsuite name="AppBrowser">
<directory suffix="Test.php">workbench/Collejo/App/Modules/*/Tests/Browser</directory>
</testsuite>
<testsuite name="AppHTTP">
<directory suffix="Test.php">workbench/Collejo/App/Modules/*/Tests/Http</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">workbench/Collejo</directory>
</whitelist>
<blacklist>
<directory>workbench/Collejo/App/Modules/*/Models/factories</directory>
<directory>workbench/Collejo/App/Modules/*/resources</directory>
<directory>workbench/Collejo/App/Console</directory>
<directory>workbench/Collejo/App/Http</directory>
<directory>workbench/Collejo/App/Providers</directory>
</blacklist>
</filter>
<php>
<ini name="display_errors" value="true"/>
<env name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="base64:r9CrgofS5UeYvUr8Ns22br4bgFcdBUOD8oh+9TA/C6k="/>
<env name="CACHE_DRIVER" value="file"/>
<env name="SESSION_DRIVER" value="file"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="APP_URL" value="http://localhost:8000"/>
<env name="APP_DEBUG" value="true"/>
<env name="DB_HOST" value="127.0.0.1"/>
<env name="DB_PORT" value="3306"/>
<env name="DB_DATABASE" value="circle_test"/>
<env name="DB_USERNAME" value="root"/>
</php>
</phpunit>