| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit bootstrap="./bootstrap.php" |
| 3 |
backupGlobals="true" |
| 4 |
colors="true" |
| 5 |
convertErrorsToExceptions="true" |
| 6 |
convertNoticesToExceptions="true" |
| 7 |
convertWarningsToExceptions="true" |
| 8 |
processIsolation="false" |
| 9 |
syntaxCheck="true" |
| 10 |
verbose="true" |
| 11 |
strict="true" |
| 12 |
stopOnError="false" |
| 13 |
stopOnFailure="false" |
| 14 |
stopOnIncomplete="false" |
| 15 |
stopOnSkipped="false"> |
| 16 |
<php> |
| 17 |
<ini name="memory_limit" value="2048M"/> |
| 18 |
</php> |
| 19 |
<testsuite name="PHPExcel Unit Test Suite"> |
| 20 |
<directory suffix="Test.php">./Classes</directory> |
| 21 |
</testsuite> |
| 22 |
<filter> |
| 23 |
<whitelist> |
| 24 |
<directory suffix=".php">../Classes</directory> |
| 25 |
<exclude> |
| 26 |
<directory>../Classes/PHPExcel/Shared/PCLZip</directory> |
| 27 |
<directory>../Classes/PHPExcel/Shared/JAMA</directory> |
| 28 |
<directory>../Classes/PHPExcel/Writer/PDF</directory> |
| 29 |
</exclude> |
| 30 |
</whitelist> |
| 31 |
</filter> |
| 32 |
<logging> |
| 33 |
<log type="coverage-html" target="./codeCoverage" charset="UTF-8" |
| 34 |
yui="true" highlight="false" |
| 35 |
lowUpperBound="35" highLowerBound="70"/> |
| 36 |
<log type="coverage-clover" target="./codeCoverage/codeCoverage.xml"/> |
| 37 |
<log type="metrics-xml" target="./metrics/metrics.xml"/> |
| 38 |
<log type="test-xml" target="./testResults/logfile.xml" logIncompleteSkipped="false"/> |
| 39 |
</logging> |
| 40 |
</phpunit> |
| 41 |
|