2012-01-19 22:32:58 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./bootstrap.php"
|
|
|
|
backupGlobals="true"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
syntaxCheck="true"
|
|
|
|
verbose="true"
|
|
|
|
strict="true"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false">
|
2015-04-26 12:00:58 +00:00
|
|
|
<php>
|
|
|
|
<ini name="memory_limit" value="2048M"/>
|
|
|
|
</php>
|
2012-01-19 22:32:58 +00:00
|
|
|
<testsuite name="PHPExcel Unit Test Suite">
|
2015-05-26 08:37:07 +00:00
|
|
|
<directory suffix="Test.php">./classes</directory>
|
2012-01-19 22:32:58 +00:00
|
|
|
</testsuite>
|
2012-12-19 11:44:43 +00:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2015-05-26 20:21:05 +00:00
|
|
|
<directory suffix=".php">../src</directory>
|
2012-12-19 11:44:43 +00:00
|
|
|
<exclude>
|
2015-05-26 20:21:05 +00:00
|
|
|
<directory>../src/PhpSpreadsheet/Shared/PCLZip</directory>
|
|
|
|
<directory>../src/PhpSpreadsheet/Shared/JAMA</directory>
|
|
|
|
<directory>../src/PhpSpreadsheet/Writer/PDF</directory>
|
2012-12-19 11:44:43 +00:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2012-01-19 22:32:58 +00:00
|
|
|
</phpunit>
|