forked from mollie/WooCommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (27 loc) · 846 Bytes
/
phpunit.xml.dist
File metadata and controls
27 lines (27 loc) · 846 Bytes
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
<phpunit
bootstrap="./tests/php/bootstrap.php"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="false"
backupGlobals="true"
backupStaticAttributes="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
failOnWarning="false">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">tests/php/Unit</directory>
</testsuite>
<testsuite name="Functional">
<directory suffix="Test.php">tests/php/Functional</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>skip</group>
</exclude>
</groups>
</phpunit>