-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (24 loc) · 779 Bytes
/
Copy pathphpunit.xml
File metadata and controls
26 lines (24 loc) · 779 Bytes
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 backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Brasil Utils Test Suite">
<directory>test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
<exclude>
<directory>vendor</directory>
</exclude>
</whitelist>
</filter>
<!--<logging>-->
<!--<log type="coverage-html"-->
<!--target="/tmp/brasil-utils-code-coverage"-->
<!--charset="UTF-8"-->
<!--highlight="true"-->
<!--lowUpperBound="35"-->
<!--highLowerBound="70"/>-->
<!--</logging>-->
</phpunit>