phpunit.xml.dist 479 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" bootstrap="tests/bootstrap.php">
  3. <testsuites>
  4. <testsuite name="Ansi Tests">
  5. <directory>tests/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <filter>
  9. <whitelist>
  10. <directory suffix=".php">src/</directory>
  11. </whitelist>
  12. </filter>
  13. </phpunit>