forked from Climba-Commerce/getnet-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
29 lines (29 loc) · 1.11 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="config/bootstrap.test.php"
colors="true"
backupGlobals="false"
cacheResult="false"
backupStaticAttributes="false">
<testsuites>
<testsuite name="Tests">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<php>
<includePath>.</includePath>
<cookie name="locale" value="pt-br"/>
<env name="REMOTE_ADDR" value="127.0.0.1"/>
<server name="REMOTE_ADDR" value="127.0.0.1"/>
<server name="SERVER_ADDR" value="127.0.0.1"/>
<request name="foo" value="bar"/>
<server name="REQUEST_URI" value="/"/>
<server name="HTTPS" value="on"/>
<server name="HTTP_X_FORWARDED_FOR" value="127.0.0.1"/>
<server name="SERVER_PORT" value="443"/>
<server name="REQUEST_METHOD" value="GET"/>
<server name="SERVER_NAME" value="localhost:8879"/>
</php>
</phpunit>