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