phpunit.xml 357 B

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