-
Notifications
You must be signed in to change notification settings - Fork 22
/
phpunit.xml.dist
58 lines (51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version='1.0' encoding='UTF-8'?>
<phpunit
backupGlobals='false'
backupStaticAttributes='false'
bootstrap='test/bootstrap.php'
colors='true'
convertErrorsToExceptions='true'
convertNoticesToExceptions='true'
convertWarningsToExceptions='true'
forceCoversAnnotation='false'
mapTestClassNameToCoveredClassName='false'
processIsolation='false'
stopOnError='false'
stopOnFailure='false'
stopOnIncomplete='false'
stopOnSkipped='false'
strict='true'
timeoutForSmallTests='10'
timeoutForMediumTests='30'
timeoutForLargeTests='60'
verbose='false'
>
<testsuites>
<testsuite name='Memcached Client Test Suite'>
<file phpVersion='5.3.0' phpVersionOperator='>='
>./test/memcached-client.test.php</file>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>benchmark</group>
<group>selenium</group>
</exclude>
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist='true'>
<directory>./</directory>
<exclude>
<file>./test/bootstrap.php</file>
<file>./test/memcached-client.test.php</file>
</exclude>
</whitelist>
</filter>
<php>
<ini name='memory_limit' value='300m' />
</php>
<logging>
<log type='coverage-html' target='./coverage-html/' />
<log type='coverage-text' target='php://stdout' />
</logging>
</phpunit>