-
Notifications
You must be signed in to change notification settings - Fork 69
/
phpunit.xml.dist
33 lines (31 loc) · 988 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
30
31
32
33
<?xml version="1.0"?>
<phpunit
bootstrap="tests/unit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="WCPay">
<directory suffix=".php">./tests/unit</directory>
<exclude>./tests/unit/multi-currency</exclude>
</testsuite>
<testsuite name="WCPayMultiCurrency">
<directory suffix=".php">./tests/unit/helpers</directory>
<directory suffix=".php">./tests/unit/multi-currency</directory>
</testsuite>
</testsuites>
<!-- Set a whitelist for code coverage analysis -->
<filter>
<whitelist>
<directory suffix=".php">includes</directory>
<directory suffix=".php">src</directory>
<exclude>
<!-- Service providers are simple, and ideally should not be used within tests. -->
<directory suffix=".php">src/Internal/DependencyManagement/ServiceProvider</directory>
</exclude>
</whitelist>
</filter>
</phpunit>