-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml.dist
32 lines (32 loc) · 1.25 KB
/
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
30
31
32
<?xml version="1.0"?>
<phpunit bootstrap="tests/unit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Unit">
<directory prefix="Test" suffix=".php">./tests/*</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html"
target="tests/coverage"
showUncoveredFiles="true"
lowUpperBound="35"
highLowerBound="70"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./web/wp-content/themes/lean-theme/backend</directory>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./web/wp-content/themes/lean-theme/backend/WP</directory>
<directory suffix=".php">./web/wp-content/themes/lean-theme/backend/Backend.php</directory>
<directory suffix=".php">./web/wp-content/themes/lean-theme/backend/functions</directory>
</exclude>
</whitelist>
</filter>
</phpunit>