Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Nov 20, 2020. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
43 lines (42 loc) · 1.47 KB
/
Copy pathphpunit.xml
File metadata and controls
43 lines (42 loc) · 1.47 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitbackupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<listeners>
<listenerfile=".app/test/TestCase.php"class="TestCase" />
</listeners>
<testsuites>
<testsuitename="setup">
<directory>./tests/Setup/</directory>
</testsuite>
<testsuitename="application">
<directory>./tests/W4P/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directorysuffix=".php">app/</directory>
</whitelist>
</filter>
<php>
<envname="APP_ENV"value="testing"/>
<envname="DB_CONNECTION"value="testing"/>
<envname="CACHE_DRIVER"value="array"/>
<envname="SESSION_DRIVER"value="array"/>
<envname="QUEUE_DRIVER"value="sync"/>
<envname="MAIL_DRIVER"value="smtp"/>
<envname="MAIL_HOST"value="127.0.0.1"/>
<envname="MAIL_PORT"value="1025"/>
<envname="MAIL_USERNAME"value="null"/>
<envname="MAIL_PASSWORD"value="null"/>
<envname="MAIL_ENCRYPTION"value="null"/>
<envname="MAIL_FROM"value="mail@W4P.org"/>
<envname="MAIL_NAME"value="W4P"/>
</php>
</phpunit>