blob: 9a43c940c11f50657ef212f1b3b0df6e034551c0 (
plain) (
blame)
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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="./vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="./clover.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<logging/>
<testsuites>
<testsuite name="php-epub-meta">
<directory>./test/</directory>
<exclude>./test/otherTest.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./app/</directory>
<directory suffix=".php">./src/</directory>
</include>
<exclude>
<directory suffix=".php">./test</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</source>
</phpunit>
|