-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
69 lines (67 loc) · 2.69 KB
/
phpunit.xml
File metadata and controls
69 lines (67 loc) · 2.69 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
64
65
66
67
68
69
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="php-tests/_bootstrap.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
defaultTestSuite="ALL"
displayDetailsOnTestsThatTriggerWarnings="true"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
requireCoverageMetadata="false"
>
<!-- phpunit 9+ -->
<coverage>
<include>
<directory suffix=".php">php-src/Connection</directory>
<directory suffix=".php">php-src/Pointers</directory>
<directory suffix=".php">php-src/Protocols</directory>
<directory suffix=".php">php-src/Schemes</directory>
<directory suffix=".php">php-src/Sockets</directory>
<directory suffix=".php">php-src/Traits</directory>
<file>php-src/RequestException.php</file>
</include>
<report>
<clover outputFile="php-tests/data/clover.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<!-- rest as usual -->
<testsuites>
<testsuite name="ALL">
<directory>php-tests/BasicTests</directory>
<directory>php-tests/ProtocolsTests</directory>
<directory>php-tests/ProtocolsTests/Http</directory>
<directory>php-tests/ProtocolsTests/Restful</directory>
<directory>php-tests/ProtocolsTests/Fsp</directory>
<directory>php-tests/TraitsTests</directory>
<exclude>php-tests/ProtocolsTests/Fsp/RemoteTest.php</exclude>
</testsuite>
<testsuite name="Basic">
<directory>php-tests/BasicTests</directory>
</testsuite>
<testsuite name="Protocols">
<directory>php-tests/ProtocolsTests</directory>
</testsuite>
<testsuite name="Http">
<directory>php-tests/ProtocolsTests/Http</directory>
<directory>php-tests/ProtocolsTests/Restful</directory>
</testsuite>
<testsuite name="Fsp">
<directory>php-tests/ProtocolsTests/Fsp</directory>
<exclude>php-tests/ProtocolsTests/Fsp/RemoteTest.php</exclude>
</testsuite>
<testsuite name="FspRemote">
<file>php-tests/ProtocolsTests/Fsp/RemoteTest.php</file>
</testsuite>
</testsuites>
</phpunit>