phpunit.xml.dist 826 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
  5. bootstrap="./tests/bootstrap.php"
  6. backupGlobals="true"
  7. colors="true">
  8. <php>
  9. <ini name="memory_limit" value="2048M"/>
  10. </php>
  11. <testsuite name="PhpSpreadsheet Unit Test Suite">
  12. <directory suffix="Test.php">./tests/PhpSpreadsheetTests</directory>
  13. </testsuite>
  14. <filter>
  15. <whitelist>
  16. <directory suffix=".php">./src</directory>
  17. <exclude>
  18. <directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
  19. <directory>./src/PhpSpreadsheet/Writer/PDF</directory>
  20. </exclude>
  21. </whitelist>
  22. </filter>
  23. </phpunit>