phpunit.xml 911 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnFailure="false">
  11. <testsuites>
  12. <testsuite name="overtrue/pinyin Test Suite (All PHP version)">
  13. <directory>./tests/</directory>
  14. <exclude>./tests/GeneratorFileDictLoaderTest.php</exclude>
  15. </testsuite>
  16. <testsuite name="overtrue/pinyin GeneratorFileDictLoaderTest Test Suite (PHP >= 5.5)">
  17. <file>./tests/AbstractDictLoaderTestCase.php</file>
  18. <file phpVersion="5.5.0" phpVersionOperator=">=">./tests/GeneratorFileDictLoaderTest.php</file>
  19. </testsuite>
  20. </testsuites>
  21. </phpunit>