blob: b2ff0040b2da44131f7bd6d2ae9f56d72eadcfd9 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?xml version="1.0" encoding="UTF-8"?>
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01002<phpunit backupGlobals="false"
3 backupStaticAttributes="false"
4 colors="true"
5 convertErrorsToExceptions="true"
6 convertNoticesToExceptions="true"
7 convertWarningsToExceptions="true"
8 processIsolation="false"
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02009 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
10 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010011 stopOnFailure="false">
12 <testsuites>
13 <testsuite name="Unit">
14 <directory suffix="Test.php">./tests</directory>
15 </testsuite>
16 </testsuites>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020017 <coverage processUncoveredFiles="true">
18 <include>
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010019 <directory suffix=".php">./lib</directory>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020020 </include>
21 <report>
22 <html outputDirectory="build/coverage"/>
23 <text outputFile="php://stdout"/>
24 </report>
25 </coverage>
26</phpunit>