forked from scribu/wp-term-management-tools
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 937 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Unit">
<directory prefix="test-" suffix=".php">./tests/</directory>
<exclude>./tests/Unit/classes/test-WPML.php</exclude>
</testsuite>
<testsuite name="WPML">
<file>./tests/Unit/classes/test-WPML.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">classes</directory>
<directory suffix=".php">inc</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="tests/reports" lowUpperBound="35" highLowerBound="80" showUncoveredFiles="false"/>
</logging>
</phpunit>