aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/mikespub/php-epub-meta/phpunit.xml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/mikespub/php-epub-meta/phpunit.xml')
-rw-r--r--vendor/mikespub/php-epub-meta/phpunit.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/mikespub/php-epub-meta/phpunit.xml b/vendor/mikespub/php-epub-meta/phpunit.xml
new file mode 100644
index 000000000..9a43c940c
--- /dev/null
+++ b/vendor/mikespub/php-epub-meta/phpunit.xml
@@ -0,0 +1,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>