forked from splitio/php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
48 lines (43 loc) · 1.84 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
<?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"/>
</php>
<testsuites>
<testsuite name="splitio">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<testsuite name="redis-adapter">
<file>tests/Suite/Redis/CacheInterfacesTest.php</file>
</testsuite>
<testsuite name="common">
<directory suffix="Test.php">tests/Suite/Common/</directory>
</testsuite>
<testsuite name="engine">
<directory suffix="Test.php">tests/Suite/Engine/</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="sdk">
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
</testsuite>
<testsuite name="attributes">
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/Suite/Common/</directory>
<directory suffix="Test.php">tests/Suite/Component/</directory>
<directory suffix="Test.php">tests/Suite/Engine/</directory>
<directory suffix="Test.php">tests/Suite/Matchers/</directory>
<directory suffix="Test.php">tests/Suite/Metrics/</directory>
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
</testsuite>
</testsuites>
</phpunit>