Because not all PHP installs have code coverage enabled, and that makes testing more difficult, and slower than necessary. Instead, use local config if you need to always have code coverage.
24 lines
745 B
XML
24 lines
745 B
XML
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
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>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
<exclude>
|
|
<directory suffix=".php">./src/PhpWord/Shared/PCLZip</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|