PHPWord/phpunit.xml.dist

28 lines
970 B
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">
<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" charset="UTF-8" highlight="true" />
2014-05-06 16:53:15 +07:00
<log type="coverage-clover" target="./build/logs/clover.xml" />
</logging>
</phpunit>