-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
31 lines (27 loc) · 838 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
processIsolation="false"
stopOnFailure="false"
convertWarningsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
backupGlobals="false"
backupStaticAttributes="false"
colors="true">
<testsuites>
<testsuite name="Unit Test Suite">
<directory suffix="Test.php">./tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
<php>
</php>
<logging>
<log type="testdox-html" target="reports/testdox.html" />
<log type="testdox-text" target="reports/testdox.txt" />
</logging>
</phpunit>