phpunit9.xml.dist 693 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/9.3/phpunit.xsd" bootstrap="./tests/bootstrap.php" backupGlobals="true" colors="true" cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache" convertDeprecationsToExceptions="true">
  3. <coverage>
  4. <include>
  5. <directory suffix=".php">./src</directory>
  6. </include>
  7. </coverage>
  8. <php>
  9. <ini name="memory_limit" value="2048M"/>
  10. <ini name="error_reporting" value="E_ALL"/>
  11. </php>
  12. <testsuite name="PhpSpreadsheet Unit Test Suite">
  13. <directory>./tests/PhpSpreadsheetTests</directory>
  14. </testsuite>
  15. </phpunit>