-
Notifications
You must be signed in to change notification settings - Fork 27
/
phpunit.xml
35 lines (35 loc) · 1.09 KB
/
phpunit.xml
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
<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>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./*</directory>
</include>
<exclude>
<directory suffix=".php">tests</directory>
<directory suffix=".php">vendor</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>