Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<phpunit bootstrap="tests/bootstrap.php" colors="true" strict="true">
4
    <testsuites>
5
        <testsuite name="Predis Test Suite">
6
            <directory>tests/Predis/</directory>
7
        </testsuite>
8
    </testsuites>
9

    
10
    <groups>
11
        <exclude>
12
            <group>ext-phpiredis</group>
13
            <group>ext-curl</group>
14
            <group>realm-webdis</group>
15
            <!-- <group>connected</group> -->
16
            <!-- <group>disconnected</group> -->
17
            <!-- <group>commands</group> -->
18
            <!-- <group>slow</group> -->
19
        </exclude>
20
    </groups>
21

    
22
    <filter>
23
        <whitelist>
24
            <directory suffix=".php">lib/Predis/</directory>
25
        </whitelist>
26
    </filter>
27

    
28
    <logging>
29
        <log type="coverage-text" target="php://stdout" />
30
    </logging>
31

    
32
    <php>
33
        <!-- Redis -->
34
        <const name="REDIS_SERVER_VERSION" value="2.8" />
35
        <const name="REDIS_SERVER_HOST" value="127.0.0.1" />
36
        <const name="REDIS_SERVER_PORT" value="6379" />
37
        <const name="REDIS_SERVER_DBNUM" value="15" />
38

    
39
        <!-- Webdis -->
40
        <const name="WEBDIS_SERVER_HOST" value="127.0.0.1" />
41
        <const name="WEBDIS_SERVER_PORT" value="7379" />
42
    </php>
43
</phpunit>
(14-14/14)