-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
phpunit.xml
31 lines (30 loc) · 984 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
28
29
30
31
<?xml version="1.0"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<coverage processUncoveredFiles="false">
<include>
<file>cachify.php</file>
<directory suffix=".php">inc</directory>
</include>
<exclude>
<directory suffix=".php">inc/setup/</directory>
<file>inc/cachify.settings.php</file>
<file>inc/cachify.settings-footer.php</file>
</exclude>
<report>
<clover outputFile="phpunit.coverage.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="default">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="phpunit.report.xml"/>
</logging>
</phpunit>