-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
63 lines (62 loc) · 2.29 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
63 lines (62 loc) · 2.29 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
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="Cache">
<directory>./src/Cache/Tests</directory>
</testsuite>
<testsuite name="Clock">
<directory>./src/Clock/Tests</directory>
</testsuite>
<testsuite name="Config">
<directory>./src/Config/Tests</directory>
</testsuite>
<testsuite name="Console">
<directory>./src/Console/Tests</directory>
</testsuite>
<testsuite name="Container">
<directory>./src/Container/Tests</directory>
</testsuite>
<testsuite name="Contracts">
<directory>./src/Contracts/Tests</directory>
</testsuite>
<testsuite name="Database">
<directory>./src/Database/Tests</directory>
</testsuite>
<testsuite name="HttpClient">
<directory>./src/HttpClient/Tests</directory>
</testsuite>
<testsuite name="HttpFactory">
<directory>./src/HttpFactory/Tests</directory>
</testsuite>
<testsuite name="HTTP Message">
<directory>./src/HttpMessage/Tests</directory>
</testsuite>
<testsuite name="HttpServer">
<directory>./src/HttpServer/Tests</directory>
</testsuite>
<testsuite name="IdlOpenApi">
<directory>./src/IdlOpenApi/Tests</directory>
</testsuite>
<testsuite name="Log">
<directory>./src/Log/Tests</directory>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./src/*/Tests</directory>
<directory>./src/*/vendor</directory>
</exclude>
</source>
</phpunit>