phpunit10.xml.dist 617 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="./tests/bootstrap.php" backupGlobals="true" colors="true" cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache">
  3. <coverage/>
  4. <php>
  5. <ini name="memory_limit" value="2048M"/>
  6. </php>
  7. <testsuite name="PhpSpreadsheet Unit Test Suite">
  8. <directory>./tests/PhpSpreadsheetTests</directory>
  9. </testsuite>
  10. <source>
  11. <include>
  12. <directory suffix=".php">./src</directory>
  13. </include>
  14. </source>
  15. </phpunit>