1 |
26210
|
stefania.m
|
<?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 |
|
|
<php>
|
29 |
|
|
<!-- Redis -->
|
30 |
|
|
<const name="REDIS_SERVER_VERSION" value="2.6" />
|
31 |
|
|
<const name="REDIS_SERVER_HOST" value="127.0.0.1" />
|
32 |
|
|
<const name="REDIS_SERVER_PORT" value="6379" />
|
33 |
|
|
<const name="REDIS_SERVER_DBNUM" value="15" />
|
34 |
|
|
|
35 |
|
|
<!-- Webdis -->
|
36 |
|
|
<const name="WEBDIS_SERVER_HOST" value="127.0.0.1" />
|
37 |
|
|
<const name="WEBDIS_SERVER_PORT" value="7379" />
|
38 |
|
|
</php>
|
39 |
|
|
</phpunit>
|