phpunit.xml 747 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2015-2017 ownCloud, Inc.
  4. - SPDX-License-Identifier: AGPL-3.0-only
  5. -->
  6. <phpunit bootstrap="bootstrap.php"
  7. verbose="true"
  8. timeoutForSmallTests="900"
  9. timeoutForMediumTests="900"
  10. timeoutForLargeTests="900"
  11. >
  12. <testsuite name='unit'>
  13. <directory suffix='Test.php'>.</directory>
  14. </testsuite>
  15. <!-- filters for code coverage -->
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">../../../dav</directory>
  19. <exclude>
  20. <directory suffix=".php">../../../dav/tests</directory>
  21. </exclude>
  22. </whitelist>
  23. </filter>
  24. <logging>
  25. <!-- and this is where your report will be written -->
  26. <log type="coverage-clover" target="./clover.xml"/>
  27. </logging>
  28. </phpunit>