-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
27 lines (27 loc) · 922 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
colors="true"
>
<coverage>
<include>
<directory suffix=".php">./test</directory>
<directory suffix=".php">./packages/tbank/trading/test</directory>
</include>
</coverage>
<testsuites>
<testsuite name="server">
<directory suffix="Test.php">test</directory>
</testsuite>
<testsuite name="trading">
<directory suffix="Test.php">packages/tbank/trading/test</directory>
</testsuite>
</testsuites>
<php>
<env name="HTTP_HOST" value="0.0.0.0" />
<env name="HTTP_PORT" value="8090" />
<env name="HTTP_DOCUMENT_ROOT" value="public" />
<env name="AMP_DEBUG" value="true" />
</php>
</phpunit>