forked from kakserpom/php-redis-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
61 lines (57 loc) · 2.91 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
61
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
stopOnError = "true"
stopOnIncomplete = "false"
stopOnSkipped = "false"
bootstrap = "vendor/autoload.php"
syntaxCheck = "true"
verbose = "true"
checkForUnintentionallyCoveredCode = "false"
beStrictAboutOutputDuringTests = "false"
beStrictAboutTestSize = "true"
>
<testsuites>
<testsuite name="Build Tests">
<directory suffix="Test.php" >./tests/Build/</directory>
</testsuite>
<testsuite name="Unit tests">
<directory suffix="Test.php" >./tests/Unit/</directory>
</testsuite>
<testsuite name="Integration tests">
<exclude>./tests/Integration/BaseVersionTest.php</exclude>
<exclude>./tests/Integration/ClusterVersionTest.php</exclude>
<directory suffix="Test.php" >./tests/Integration/</directory>
</testsuite>
</testsuites>
<php>
<const name="TEST_REDIS_SERVER_2x6_1" value="127.0.0.1:6381" />
<const name="TEST_REDIS_SERVER_2x6_2" value="localhost:6382" />
<const name="TEST_REDIS_SERVER_2x8_1" value="127.0.0.1:6383" />
<const name="TEST_REDIS_SERVER_2x8_2" value="localhost:6384" />
<const name="TEST_REDIS_SERVER_3x0_1" value="127.0.0.1:6385" />
<const name="TEST_REDIS_SERVER_3x0_2" value="localhost:6386" />
<const name="TEST_REDIS_SERVER_3x2_1" value="127.0.0.1:6387" />
<const name="TEST_REDIS_SERVER_3x2_2" value="localhost:6388" />
<const name="TEST_REDIS_SERVER_4x0_1" value="127.0.0.1:6389" />
<const name="TEST_REDIS_SERVER_4x0_2" value="localhost:6390" />
<const name="TEST_REDIS_SERVER_5x0_1" value="127.0.0.1:6391" />
<const name="TEST_REDIS_SERVER_5x0_2" value="localhost:6392" />
<const name="TEST_REDIS_SERVER_6x0_1" value="127.0.0.1:6393" />
<const name="TEST_REDIS_SERVER_6x0_2" value="localhost:6394" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_A" value="127.0.0.1:7001" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_A1" value="127.0.0.1:7004" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_B" value="127.0.0.1:7002" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_B1" value="127.0.0.1:7005" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_C" value="127.0.0.1:7003" />
<const name="TEST_REDIS_SERVER_3x2_CLUSTER_C1" value="127.0.0.1:7006" />
<const name="TEST_REDIS_SERVER_PASSWORD" value="test-password-123" />
</php>
</phpunit>