2012-11-24 07:32:16 +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"
|
2016-03-22 15:11:05 +00:00
|
|
|
verbose="true"
|
|
|
|
reportUselessTests="true"
|
|
|
|
strictCoverage="true"
|
|
|
|
disallowTestOutput="true"
|
2012-11-24 07:32:16 +00:00
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false">
|
|
|
|
<php>
|
|
|
|
<ini name="memory_limit" value="2048M"/>
|
|
|
|
</php>
|
|
|
|
<testsuite name="PHPExcel Unit Test Suite">
|
2015-05-26 08:37:07 +00:00
|
|
|
<directory suffix="Test.php">./classes</directory>
|
2012-11-24 07:32:16 +00:00
|
|
|
</testsuite>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2015-05-26 08:37:07 +00:00
|
|
|
<directory suffix=".php">../classes</directory>
|
2012-11-24 07:32:16 +00:00
|
|
|
<exclude>
|
2015-05-26 08:37:07 +00:00
|
|
|
<directory>../classes/src/Shared/PCLZip</directory>
|
|
|
|
<directory>../classes/src/Shared/JAMA</directory>
|
|
|
|
<directory>../classes/src/Writer/PDF</directory>
|
2012-11-24 07:32:16 +00:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
|
|
|
<log type="coverage-html" target="./codeCoverage" charset="UTF-8"
|
|
|
|
yui="true" highlight="false"
|
|
|
|
lowUpperBound="35" highLowerBound="70"/>
|
|
|
|
<log type="coverage-clover" target="./codeCoverage/codeCoverage.xml"/>
|
|
|
|
<log type="metrics-xml" target="./metrics/metrics.xml"/>
|
|
|
|
<log type="test-xml" target="./testResults/logfile.xml" logIncompleteSkipped="false"/>
|
|
|
|
</logging>
|
|
|
|
</phpunit>
|