forked from TheFox/phpchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
60 lines (59 loc) · 2.24 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="bootstrap.php"
checkForUnintentionallyCoveredCode="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="false"
stopOnSkipped="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="true">
<testsuites>
<testsuite name="all">
<file>tests/TheFox/Test/AddressbookTest.php</file>
<file>tests/TheFox/Test/BasicTest.php</file>
<file>tests/TheFox/Test/ClientTest.php</file>
<file>tests/TheFox/Test/ColorTest.php</file>
<file>tests/TheFox/Test/ConsoleTest.php</file>
<file>tests/TheFox/Test/CronjobTest.php</file>
<file>tests/TheFox/Test/HttpUriTest.php</file>
<file>tests/TheFox/Test/KademliaBucketTest.php</file>
<file>tests/TheFox/Test/KademliaNodeTest.php</file>
<!--<file>tests/TheFox/Test/KademliaTableTest.php</file>//-->
<file>tests/TheFox/Test/LogTest.php</file>
<file>tests/TheFox/Test/MsgDbTest.php</file>
<file>tests/TheFox/Test/MsgTest.php</file>
<file>tests/TheFox/Test/NodesNewDbTest.php</file>
<file>tests/TheFox/Test/SimpleTableTest.php</file>
<file>tests/TheFox/Test/SslTest.php</file>
<file>tests/TheFox/Test/TalkRequestTest.php</file>
<file>tests/TheFox/Test/TcpClientTest.php</file>
<file>tests/TheFox/Test/TcpUriTest.php</file>
<file>tests/TheFox/Test/ThreadTest.php</file>
<file>tests/TheFox/Test/UuidTest.php</file>
<file>tests/TheFox/Test/YamlStorageTest.php</file>
</testsuite>
<testsuite name="dht">
<file>tests/TheFox/Test/KademliaBucketTest.php</file>
<file>tests/TheFox/Test/KademliaNodeTest.php</file>
<!--<file>tests/TheFox/Test/KademliaTableTest.php</file>//-->
<file>tests/TheFox/Test/SimpleTableTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false" processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>