2016-08-13 17:22:11 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./tests/bootstrap.php"
|
|
|
|
backupGlobals="true"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
syntaxCheck="true"
|
|
|
|
verbose="true"
|
|
|
|
reportUselessTests="true"
|
|
|
|
strictCoverage="true"
|
|
|
|
disallowTestOutput="true"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false">
|
|
|
|
<php>
|
|
|
|
<ini name="memory_limit" value="2048M"/>
|
|
|
|
</php>
|
2016-08-16 14:24:47 +00:00
|
|
|
<testsuite name="PhpSpreadsheet Unit Test Suite">
|
2016-08-13 17:22:11 +00:00
|
|
|
<directory suffix="Test.php">./tests/PhpSpreadsheet</directory>
|
|
|
|
</testsuite>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">./src</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory>./src/PhpSpreadsheet/Shared/PCLZip</directory>
|
|
|
|
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
|
|
|
|
<directory>./src/PhpSpreadsheet/Writer/PDF</directory>
|
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|