23 lines
664 B
XML
23 lines
664 B
XML
<?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">
|
|
<php>
|
|
<ini name="memory_limit" value="2048M"/>
|
|
</php>
|
|
<testsuite name="PHPExcel Unit Test Suite">
|
|
<directory suffix="Test.php">./Classes</directory>
|
|
</testsuite>
|
|
</phpunit>
|