blob: 9a43c940c11f50657ef212f1b3b0df6e034551c0 (
plain) (
tree)
|
|
<?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>
|