forked from Textalk/websocket-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
43 lines (43 loc) · 1.35 KB
/
phpunit.xml.dist
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="true"
verbose="true">
<testsuites>
<testsuite name="Unit tests">
<directory suffix=".php">tests/unit</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage"
title="Unit coverage" charset="UTF-8" yui="true"
highlight="true" lowUpperBound="80" highLowerBound="95"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<blacklist>
<file>lib/Server.php</file>
</blacklist>
<whitelist addUncoveredFilesFromWhitelist="true">
<exclude>
<file>lib/Server.php</file>
</exclude>
<directory suffix=".php">lib/</directory>
</whitelist>
</filter>
</phpunit>