-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml
60 lines (60 loc) · 1.63 KB
/
phpunit.xml
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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
cacheResult="false"
colors="true"
convertErrorsToExceptions="true"
convertDeprecationsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false"
>
<coverage>
<include>
<directory suffix=".php">dist/</directory>
</include>
<exclude>
<directory>dist/vendor/</directory>
</exclude>
<report>
<clover outputFile="clover.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<!-- For older versions of PHPUnit -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">dist/</directory>
<exclude>
<directory suffix=".php">dist/vendor/</directory>
<file>dist/uninstall.php</file>
</exclude>
</whitelist>
</filter>
<php>
<server name="DOCUMENT_ROOT" value="tests"/>
</php>
<testsuites>
<testsuite name="unit">
<directory>tests/unit/</directory>
</testsuite>
</testsuites>
<!-- For older versions of PHPUnit -->
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
</phpunit>