phpunit.xml.dist 535 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php" colors="true">
  3. <testsuites>
  4. <testsuite name="Cache Test Suite">
  5. <directory suffix="Test.php">./tests/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <filter>
  9. <whitelist>
  10. <directory>./</directory>
  11. <exclude>
  12. <directory>./test/</directory>
  13. </exclude>
  14. </whitelist>
  15. </filter>
  16. <php>
  17. <ini name="precision" value="8"/>
  18. </php>
  19. </phpunit>