1<?xml version="1.0"?>
2<phpunit
3  colors="true"
4  bootstrap="bootstrap.php"
5  convertErrorsToExceptions="true"
6  convertNoticesToExceptions="true"
7  convertWarningsToExceptions="true"
8  beStrictAboutTestsThatDoNotTestAnything="true"
9  beStrictAboutOutputDuringTests="true"
10  beStrictAboutTestSize="true">
11
12  <testsuite name="sabre-event">
13      <directory>../vendor/sabre/event/tests/</directory>
14  </testsuite>
15  <testsuite name="sabre-uri">
16      <directory>../vendor/sabre/uri/tests/</directory>
17  </testsuite>
18  <testsuite name="sabre-xml">
19    <directory>../vendor/sabre/xml/tests/Sabre/Xml/</directory>
20  </testsuite>
21  <testsuite name="sabre-http">
22      <directory>../vendor/sabre/http/tests/HTTP</directory>
23  </testsuite>
24  <testsuite name="sabre-vobject">
25      <directory>../vendor/sabre/vobject/tests/VObject</directory>
26  </testsuite>
27
28  <testsuite name="sabre-dav">
29      <directory>Sabre/DAV</directory>
30  </testsuite>
31  <testsuite name="sabre-davacl">
32      <directory>Sabre/DAVACL</directory>
33  </testsuite>
34  <testsuite name="sabre-caldav">
35      <directory>Sabre/CalDAV</directory>
36  </testsuite>
37  <testsuite name="sabre-carddav">
38      <directory>Sabre/CardDAV</directory>
39  </testsuite>
40
41  <filter>
42    <whitelist addUncoveredFilesFromWhitelist="true">
43       <directory suffix=".php">../lib/</directory>
44    </whitelist>
45  </filter>
46</phpunit>
47