2019-12-14 22:23:57 +01:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
|
|
|
|
|
backupGlobals="false"
|
2013-12-11 15:08:54 -05:00
|
|
|
backupStaticAttributes="false"
|
2014-03-24 08:23:59 -04:00
|
|
|
bootstrap="./tests/bootstrap.php"
|
2013-12-11 15:08:54 -05:00
|
|
|
colors="true"
|
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
|
processIsolation="false"
|
2018-07-14 00:59:54 +02:00
|
|
|
stopOnFailure="false">
|
2013-12-11 15:08:54 -05:00
|
|
|
<testsuites>
|
2014-03-22 10:06:08 +04:00
|
|
|
<testsuite name="PhpWord Test Suite">
|
2014-05-15 22:13:03 +07:00
|
|
|
<directory>./tests/PhpWord</directory>
|
2013-12-11 15:08:54 -05:00
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
2014-02-24 19:17:06 +01:00
|
|
|
<filter>
|
|
|
|
|
<whitelist>
|
2014-03-22 10:06:08 +04:00
|
|
|
<directory suffix=".php">./src</directory>
|
2014-03-28 19:41:33 +07:00
|
|
|
<exclude>
|
|
|
|
|
<directory suffix=".php">./src/PhpWord/Shared/PCLZip</directory>
|
|
|
|
|
</exclude>
|
2014-02-24 19:17:06 +01:00
|
|
|
</whitelist>
|
|
|
|
|
</filter>
|
2014-05-04 22:53:56 +07:00
|
|
|
<logging>
|
2018-07-14 00:59:54 +02:00
|
|
|
<log type="coverage-html" target="./build/coverage" />
|
2014-05-06 16:53:15 +07:00
|
|
|
<log type="coverage-clover" target="./build/logs/clover.xml" />
|
2018-11-30 23:01:05 +01:00
|
|
|
<log type="junit" target="./build/logs/logfile.xml"/>
|
2014-05-04 22:53:56 +07:00
|
|
|
</logging>
|
2014-03-22 10:06:08 +04:00
|
|
|
</phpunit>
|