db backup prior to drupal security update
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / configuration_xinclude.xml
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          mapTestClassNameToCoveredClassName="false"
15          printerClass="PHPUnit_TextUI_ResultPrinter"
16          stopOnFailure="false"
17          testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
18          timeoutForSmallTests="1"
19          timeoutForMediumTests="10"
20          timeoutForLargeTests="60"
21          beStrictAboutTestsThatDoNotTestAnything="false"
22          beStrictAboutOutputDuringTests="false"
23          beStrictAboutTestSize="false"
24          beStrictAboutTodoAnnotatedTests="false"
25          checkForUnintentionallyCoveredCode="false"
26          beStrictAboutChangesToGlobalState="false"
27          verbose="false">
28          <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
29              href="configuration.xml"
30              parse="xml"
31              xpointer="xpointer(/phpunit/testsuites)" />
32
33   <groups>
34     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
35           href="configuration.xml"
36         parse="xml"
37         xpointer="xpointer(/phpunit/groups/*)" />
38   </groups>
39
40
41   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
42       href="configuration.xml"
43       parse="xml"
44       xpointer="xpointer(/phpunit/filter)" />
45   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
46       href="configuration.xml"
47       parse="xml"
48       xpointer="xpointer(/phpunit/listeners)" />
49   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
50       href="configuration.xml"
51       parse="xml"
52       xpointer="xpointer(/phpunit/logging)" />
53
54   <php>
55     <includePath>.</includePath>
56     <includePath>/path/to/lib</includePath>
57     <ini name="foo" value="bar"/>
58     <const name="FOO" value="false"/>
59     <const name="BAR" value="true"/>
60     <var name="foo" value="false"/>
61     <env name="foo" value="true"/>
62     <post name="foo" value="bar"/>
63     <get name="foo" value="bar"/>
64     <cookie name="foo" value="bar"/>
65     <server name="foo" value="bar"/>
66     <files name="foo" value="bar"/>
67     <request name="foo" value="bar"/>
68   </php>
69
70   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
71       href="configuration.xml"
72       parse="xml"
73       xpointer="xpointer(/phpunit/selenium)" />
74 </phpunit>
75