-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
26 lines (25 loc) · 932 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" stderr="true" processIsolation="true" colors="true" beStrictAboutTestsThatDoNotTestAnything="false">
<testsuites>
<testsuite name="Shieldon SimpleCache Test Suite">
<directory>tests/SimpleCache/</directory>
<exclude>src/SimpleCache/Driver/Wincache.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<file>src/SimpleCache/Driver/Wincache.php</file>
</exclude>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="UTC"/>
<const name="PHPUNIT_TEST" value="TRUE"/>
</php>
<logging>
<log type="coverage-clover" target="coverage.xml"/>
<log type="coverage-html" target="tests/report"/>
</logging>
</phpunit>