forked from facebook/facebook-for-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
31 lines (31 loc) · 905 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
defaultTestSuite="unit"
>
<testsuites>
<testsuite name="unit">
<directory suffix=".php">./tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix=".php">./tests/integration</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory>includes</directory>
<file>./class-wc-facebookcommerce.php</file>
<file>./facebook-commerce-events-tracker.php</file>
<file>./facebook-commerce-pixel-event.php</file>
<file>./facebook-commerce.php</file>
<file>./facebook-config-warmer.php</file>
<file>./facebook-for-woocommerce.php</file>
</include>
</coverage>
</phpunit>