2016-08-13 17:22:11 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-07-25 06:45:43 +00:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
|
|
|
|
bootstrap="./tests/bootstrap.php"
|
|
|
|
backupGlobals="true"
|
2020-04-27 12:16:53 +00:00
|
|
|
colors="true"
|
|
|
|
cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache"
|
|
|
|
>
|
2016-08-13 17:22:11 +00:00
|
|
|
<php>
|
|
|
|
<ini name="memory_limit" value="2048M"/>
|
|
|
|
</php>
|
2016-08-16 14:24:47 +00:00
|
|
|
<testsuite name="PhpSpreadsheet Unit Test Suite">
|
2016-08-25 04:53:15 +00:00
|
|
|
<directory suffix="Test.php">./tests/PhpSpreadsheetTests</directory>
|
2016-08-13 17:22:11 +00:00
|
|
|
</testsuite>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">./src</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
|
|
|
|
<directory>./src/PhpSpreadsheet/Writer/PDF</directory>
|
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|