No Description

phpunit.xml.dist 443B

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