PHPWord/phpunit.xml.dist

24 lines
755 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">
<testsuites>
<testsuite name="PhpWord Test Suite">
2022-09-16 14:09:17 +02:00
<directory>./tests/PhpWordTests</directory>
</testsuite>
</testsuites>
2014-02-24 19:17:06 +01:00
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
2022-09-16 14:09:17 +02:00
<directory suffix=".php">./src/PhpWordTests/Shared/PCLZip</directory>
</exclude>
2014-02-24 19:17:06 +01:00
</whitelist>
</filter>
</phpunit>