-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (38 loc) · 1.26 KB
/
phpunit.xml
File metadata and controls
42 lines (38 loc) · 1.26 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
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
colors="true"
processIsolation="false"
cacheResult="false">
<php>
<ini name="memory_limit" value="1G"/>
<ini name="max_execution_time" value="600"/>
</php>
<testsuites>
<testsuite name="Runtime">
<directory>./tests/Runtime</directory>
</testsuite>
<testsuite name="Sync">
<directory>./tests/Sync</directory>
</testsuite>
<testsuite name="Stream">
<directory>./tests/Stream</directory>
</testsuite>
<testsuite name="Net">
<directory>./tests/Net</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
</exclude>
</coverage>
<logging>
<junit outputFile="./logs/junit.xml"/>
<testdoxHtml outputFile="./logs/.phpunit-result.html"/>
<testdoxText outputFile="./logs/.phpunit-result.txt"/>
</logging>
</phpunit>