1<?xml version="1.0" encoding="utf-8" ?>
2
3<phpunit backupGlobals="true"
4         backupStaticAttributes="false"
5         bootstrap="/path/to/bootstrap.php"
6         cacheTokens="false"
7         columns="80"
8         colors="false"
9         stderr="false"
10         convertErrorsToExceptions="true"
11         convertNoticesToExceptions="true"
12         convertWarningsToExceptions="true"
13         forceCoversAnnotation="false"
14         stopOnFailure="false"
15         stopOnWarning="false"
16         failOnWarning="false"
17         failOnRisky="false"
18         extensionsDirectory="/tmp"
19         printerClass="PHPUnit_TextUI_ResultPrinter"
20         testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
21         beStrictAboutChangesToGlobalState="false"
22         beStrictAboutOutputDuringTests="false"
23         beStrictAboutResourceUsageDuringSmallTests="false"
24         beStrictAboutTestsThatDoNotTestAnything="false"
25         beStrictAboutTodoAnnotatedTests="false"
26         beStrictAboutCoversAnnotation="false"
27         enforceTimeLimit="false"
28         timeoutForSmallTests="1"
29         timeoutForMediumTests="10"
30         timeoutForLargeTests="60"
31         verbose="false">
32         <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
33             href="configuration.xml"
34             parse="xml"
35             xpointer="xpointer(/phpunit/testsuites)" />
36
37  <groups>
38    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
39          href="configuration.xml"
40        parse="xml"
41        xpointer="xpointer(/phpunit/groups/*)" />
42  </groups>
43
44
45  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
46      href="configuration.xml"
47      parse="xml"
48      xpointer="xpointer(/phpunit/filter)" />
49  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
50      href="configuration.xml"
51      parse="xml"
52      xpointer="xpointer(/phpunit/listeners)" />
53  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
54      href="configuration.xml"
55      parse="xml"
56      xpointer="xpointer(/phpunit/logging)" />
57
58  <php>
59    <includePath>.</includePath>
60    <includePath>/path/to/lib</includePath>
61    <ini name="foo" value="bar"/>
62    <const name="FOO" value="false"/>
63    <const name="BAR" value="true"/>
64    <var name="foo" value="false"/>
65    <env name="foo" value="true"/>
66    <post name="foo" value="bar"/>
67    <get name="foo" value="bar"/>
68    <cookie name="foo" value="bar"/>
69    <server name="foo" value="bar"/>
70    <files name="foo" value="bar"/>
71    <request name="foo" value="bar"/>
72  </php>
73</phpunit>
74
75