forked from omise/omise-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
39 lines (39 loc) · 1.27 KB
/
phpunit.xml
File metadata and controls
39 lines (39 loc) · 1.27 KB
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
34
35
36
37
38
39
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.1/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
colors="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
verbose="true">
<testsuites>
<testsuite name="Omise WooCommerce Test Suite">
<directory suffix="-test.php">tests/unit</directory>
<directory suffix="Test.php">tests/unit</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./*</directory>
</include>
<exclude>
<directory>tests</directory>
<directory>vendor</directory>
<directory>node_modules</directory>
<directory>wp-content</directory>
<directory>includes/libraries/omise-php</directory>
</exclude>
</coverage>
<php>
<server name="HTTP_CLIENT_IP" value="192.168.1.1"/>
<server name="HTTP_X_FORWARDED_FOR" value="192.168.1.2"/>
<server name="HTTP_X_FORWARDED" value="192.168.1.3"/>
<server name="HTTP_FORWARDED_FOR" value="192.168.1.4"/>
<server name="HTTP_FORWARDED" value="192.168.1.5"/>
<server name="REMOTE_ADDR" value="192.168.1.6"/>
</php>
</phpunit>