forked from mollie/WooCommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 1.01 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
<phpunit
bootstrap="./tests/php/bootstrap.php"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
backupGlobals="true"
backupStaticAttributes="true"
processIsolation="true"
stopOnError="false"
stopOnFailure="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
failOnWarning="false">
<testsuites>
<testsuite name="Test">
<directory suffix="Test.php">./tests/php/Unit/</directory>
<directory suffix="Test.php">./tests/php/Integration/</directory>
<directory suffix="Test.php">./tests/php/Functional/</directory>
<exclude>./tests/php/TestCase.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./inc</directory>
<directory suffix=".php">./src</directory>
<file>./</file>
</whitelist>
</filter>
</phpunit>