-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathphpunit.xml
31 lines (28 loc) · 828 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite>
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory prefix="./inc/">.</directory>
</whitelist>
<blacklist>
<directory>tests</directory>
<directory>vendor</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="tests/coverage" title="PHPUnit"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="50" highLowerBound="90"/>
</logging>
</phpunit>