phpunit.xml.dist 545 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="false"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. stopOnFailure="false"
  9. syntaxCheck="false"
  10. bootstrap="vendor/autoload.php"
  11. >
  12. <testsuites>
  13. <testsuite name="PHP Font Lib Test Suite">
  14. <directory>./tests/FontLib/</directory>
  15. </testsuite>
  16. </testsuites>
  17. </phpunit>