-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
21 lines (21 loc) · 1021 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<phpunit colors="true" verbose="true">
<testsuites>
<testsuite name="Cm_Cache_Backend_Redis testsuite">
<file>tests/SetUpBefore.php</file>
<file>tests/CredisTest.php</file>
<file>tests/CredisStandaloneTest.php</file>
<file>tests/CredisClusterTest.php</file>
<file>tests/CredisStandaloneClusterTest.php</file>
<file>tests/CredisSentinelTest.php</file>
<file>tests/CredisStandaloneSentinelTest.php</file>
<file>tests/TearDownAfter.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="tests/_reports/coverage/" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="testdox-text" target="tests/_reports/testdox/tests.txt"/>
<log type="testdox-html" target="tests/_reports/testdox/tests.html"/>
<log type="json" target="tests/_reports/logfile.json"/>
</logging>
</phpunit>