phpunit.xml.dist 411 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. colors="true">
  4. <testsuites>
  5. <testsuite>
  6. <directory>tests</directory>
  7. </testsuite>
  8. </testsuites>
  9. <filter>
  10. <whitelist>
  11. <directory suffix=".php">src</directory>
  12. <exclude>
  13. <directory suffix="Interface.php">src/</directory>
  14. </exclude>
  15. </whitelist>
  16. </filter>
  17. </phpunit>