forked from splitio/php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
66 lines (60 loc) · 2.76 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
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<!-- Values for Suites configuration -->
<php>
<const name="REDIS_HOST" value="localhost"/>
<const name="REDIS_PORT" value="6379"/>
<const name="TEST_PREFIX" value="SPLITIO_TEST:."/>
</php>
<testsuites>
<testsuite name="splitio">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<testsuite name="adapter">
<directory suffix="Test.php">tests/Suite/Adapter</directory>
</testsuite>
<testsuite name="attributes">
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
</testsuite>
<testsuite name="common">
<directory suffix="Test.php">tests/Suite/Common/</directory>
</testsuite>
<testsuite name="component">
<directory suffix="Test.php">tests/Suite/Component/</directory>
</testsuite>
<testsuite name="dynamic_configurations">
<directory suffix="Test.php">tests/Suite/DynamicConfigurations/</directory>
</testsuite>
<testsuite name="engine">
<directory suffix="Test.php">tests/Suite/Engine/</directory>
</testsuite>
<testsuite name="input_validation">
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
</testsuite>
<testsuite name="matchers">
<directory suffix="Test.php">tests/Suite/Matchers/</directory>
</testsuite>
<testsuite name="metrics">
<directory suffix="Test.php">tests/Suite/Metrics/</directory>
</testsuite>
<testsuite name="redis">
<directory suffix="Test.php">tests/Suite/Redis/</directory>
</testsuite>
<testsuite name="sdk">
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/Suite/Adapter/</directory>
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
<directory suffix="Test.php">tests/Suite/Common/</directory>
<directory suffix="Test.php">tests/Suite/Component/</directory>
<directory suffix="Test.php">tests/Suite/DynamicConfigurations/</directory>
<directory suffix="Test.php">tests/Suite/Engine/</directory>
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
<directory suffix="Test.php">tests/Suite/Matchers/</directory>
<directory suffix="Test.php">tests/Suite/Metrics/</directory>
<directory suffix="Test.php">tests/Suite/Redis/</directory>
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
</testsuite>
</testsuites>
</phpunit>