-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
38 lines (35 loc) · 1.21 KB
/
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
32
33
34
35
36
37
38
<?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"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
convertErrorsToExceptions="false"
bootstrap="Tests/bootstrap.php"
stopOnFailure="true"
verbose="true"
colors="true">
<testsuites>
<testsuite name="Koded HTTP Library Test Suite">
<directory>Tests</directory>
</testsuite>
</testsuites>
<!-- code coverage -->
<coverage>
<include>
<directory suffix=".php">./</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>Tests</directory>
<directory>diagrams</directory>
</exclude>
</coverage>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="memory_limit" value="-1"/>
<env name="COMPOSER_MEMORY_LIMIT" value="-1"/>
<ini name="xdebug.max_nesting_level" value="200"/>
<server name="HTTP_HOST" value="example.com"/>
<cookie name="test" value="fubar"/>
</php>
</phpunit>