forked from terrylinooo/shieldon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
27 lines (26 loc) · 934 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
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" stderr="true" processIsolation="true" colors="true" beStrictAboutTestsThatDoNotTestAnything="false">
<testsuites>
<testsuite name="Shieldon Test Suite">
<directory>tests/Shieldon/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/Shieldon/</directory>
<exclude>
<file>src/Shieldon/Autoloader.php</file>
<file>src/Shieldon/helpers.php</file>
<directory suffix=".php">src/Shieldon/Integration/</directory>
</exclude>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="UTC"/>
<const name="PHPUNIT_TEST" value="TRUE"/>
</php>
<logging>
<log type="coverage-clover" target="clover.xml"/>
<log type="coverage-html" target="tests/report"/>
</logging>
</phpunit>