1<phpunit
2  colors="true"
3  bootstrap="bootstrap.php"
4  convertErrorsToExceptions="true"
5  convertNoticesToExceptions="true"
6  convertWarningsToExceptions="true"
7  beStrictAboutTestsThatDoNotTestAnything="true"
8  beStrictAboutOutputDuringTests="true"
9  beStrictAboutTestSize="true"
10  >
11  <testsuite name="Sabre\VObject">
12    <directory>VObject/</directory>
13  </testsuite>
14
15  <filter>
16    <whitelist addUncoveredFilesFromWhitelist="true">
17        <directory suffix=".php">../lib/</directory>
18        <exclude>
19            <file>../lib/Sabre/VObject/includes.php</file>
20        </exclude>
21   </whitelist>
22  </filter>
23</phpunit>
24