-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
26 lines (26 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./app/api/tests/bootstrap.php" colors="true">
<php>
<server name="UNA_SERVICE" value="http://localhost/una" />
<server name="ENCRYPT_BADGE" value="ABCDEFGHIJKLMNOPQRSTUVWXYZ" />
</php>
<testsuites>
<testsuite name="Application Test Suite">
<directory>./app/api/tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">app/api/config</directory>
<directory suffix=".php">app/api/src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/logs/coverage" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"/>
<log type="testdox-html" target="build/logs/coverage/testdox.html" />
<log type="testdox-text" target="build/logs/coverage/testdox.txt"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
</phpunit>