phpunit.xml 392 B

12345678910111213141516
  1. <phpunit>
  2. <filter>
  3. <whitelist>
  4. <directory suffix=".php">./src</directory>
  5. </whitelist>
  6. </filter>
  7. <logging>
  8. <log type="coverage-clover" target="coverage.xml" />
  9. </logging>
  10. <testsuites>
  11. <testsuite name="FunctionTest">
  12. <directory>./tests</directory>
  13. <exclude>./tests/OSS/Tests/BucketCnameTest.php</exclude>
  14. </testsuite>
  15. </testsuites>
  16. </phpunit>