PHPWord/phpunit.xml.dist

31 lines
1.0 KiB
Plaintext
Raw Normal View History

<phpunit 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"
syntaxCheck="false">
<testsuites>
<testsuite name="PhpWord Test Suite">
2014-03-24 08:23:59 -04:00
<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>
2014-05-06 16:53:15 +07:00
<!--
For http://phpoffice.github.io/PHPWord/coverage/ and Scrutinizer
-->
<log type="coverage-html" target="./build/coverage" charset="UTF-8" highlight="true" />
2014-05-06 16:53:15 +07:00
<log type="coverage-clover" target="./build/logs/clover.xml" />
</logging>
</phpunit>