phpunit.xml.dist 543 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="tests/Bootstrap.php"
  3. colors="true"
  4. processIsolation="false"
  5. stopOnFailure="false"
  6. syntaxCheck="false"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
  11. <testsuites>
  12. <testsuite>
  13. <directory>tests/Mailgun/Tests</directory>
  14. </testsuite>
  15. </testsuites>
  16. </phpunit>