-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
56 lines (51 loc) · 1.63 KB
/
Copy pathphpunit.xml
File metadata and controls
56 lines (51 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Http">
<directory>tests/Http</directory>
</testsuite>
<testsuite name="Localization">
<directory>tests/Localization</directory>
</testsuite>
<testsuite name="Function">
<directory>tests/function</directory>
</testsuite>
<testsuite name="Configuration">
<directory>tests/Configuration</directory>
</testsuite>
<testsuite name="Ppa">
<directory>tests/Ppa</directory>
<exclude>tests/Ppa/Fixtures</exclude>
</testsuite>
<testsuite name="Integration">
<directory>tests/Integration</directory>
<exclude>tests/Integration/Fixtures</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>integration</group>
<group>pool</group>
<group>cdo-diagnostic</group>
<group>swoole</group>
</exclude>
</groups>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<!--
Coverage report: run with XDEBUG_MODE=coverage php vendor/bin/phpunit
or add the -\-coverage-html build/coverage flag.
<coverage>
<report>
<html outputDirectory="build/coverage"/>
</report>
</coverage>
-->
</phpunit>