PHPWord/phpunit.xml.dist

30 lines
1.1 KiB
Plaintext
Raw Normal View History

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"
backupStaticAttributes="false"
2014-03-24 08:23:59 -04:00
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="PhpWord Test Suite">
<directory>./tests/PhpWord</directory>
</testsuite>
</testsuites>
2014-02-24 19:17:06 +01:00
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./src/PhpWord/Shared/PCLZip</directory>
</exclude>
2014-02-24 19:17:06 +01:00
</whitelist>
</filter>
<logging>
<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"/>
</logging>
</phpunit>