-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 885 Bytes
/
Copy pathphpunit.xml
File metadata and controls
32 lines (32 loc) · 885 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
colors="true"
cacheDirectory="tests/build"
>
<coverage
includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<report>
<clover outputFile="tests/build/clover.xml"/>
<php outputFile="tests/build/coverage.serialized"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./plugin</directory>
</include>
</source>
<testsuites>
<testsuite name="Object Cache">
<file>tests/CacheTest.php</file>
</testsuite>
</testsuites>
<php>
<server name="TW_CACHE_ENGINE" value="redis"/>
<server name="TW_CACHE_KEY_SALT" value="twee_tests"/>
</php>
</phpunit>