-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (31 loc) · 1.06 KB
/
phpunit.xml
File metadata and controls
31 lines (31 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
syntaxCheck="true"
backupGlobals="false"
forceCoversAnnotation="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Config Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix=".php">src/Exception</directory>
<directory suffix=".php">src/Interface</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="testdox-html" target="build/result.html"/>
<log type="testdox-text" target="build/result.txt"/>
<log type="coverage-html" target="build/coverage.html"/>
<log type="coverage-text" target="build/coverage.txt"/>
</logging>
</phpunit>