1<?xml version="1.0" encoding="utf-8" ?>
2
3<phpunit bootstrap=""
4         testSuiteLoaderFile=""
5         printerFile="">
6  <testsuites>
7    <testsuite name="My Test Suite">
8      <directory></directory>
9      <file></file>
10    </testsuite>
11  </testsuites>
12
13  <groups>
14    <include>
15      <group></group>
16    </include>
17    <exclude>
18      <group></group>
19    </exclude>
20  </groups>
21
22  <filter>
23    <whitelist>
24      <directory></directory>
25      <file></file>
26      <exclude>
27        <directory></directory>
28        <file></file>
29      </exclude>
30    </whitelist>
31  </filter>
32
33  <logging>
34    <log type="coverage-html" target=""/>
35    <log type="coverage-clover" target=""/>
36    <log type="json" target=""/>
37    <log type="plain" target=""/>
38    <log type="tap" target=""/>
39    <log type="junit" target="" logIncompleteSkipped="false"/>
40    <log type="testdox-html" target=""/>
41    <log type="testdox-text" target=""/>
42  </logging>
43
44  <php>
45    <includePath/>
46    <includePath></includePath>
47  </php>
48</phpunit>
49
50