phpunit.xml.dist 719 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. backupGlobals="true"
  4. colors="true"
  5. syntaxCheck="true"
  6. disallowTestOutput="true">
  7. <php>
  8. <ini name="memory_limit" value="2048M"/>
  9. </php>
  10. <testsuite name="PhpSpreadsheet Unit Test Suite">
  11. <directory suffix="Test.php">./tests/PhpSpreadsheetTests</directory>
  12. </testsuite>
  13. <filter>
  14. <whitelist>
  15. <directory suffix=".php">./src</directory>
  16. <exclude>
  17. <directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
  18. <directory>./src/PhpSpreadsheet/Writer/PDF</directory>
  19. </exclude>
  20. </whitelist>
  21. </filter>
  22. </phpunit>