Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / configuration.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   <testsuites>
29     <testsuite name="My Test Suite">
30       <directory suffix="Test.php" phpVersion="5.3.0" phpVersionOperator=">=">/path/to/files</directory>
31       <file phpVersion="5.3.0" phpVersionOperator=">=">/path/to/MyTest.php</file>
32     </testsuite>
33   </testsuites>
34
35   <groups>
36     <include>
37       <group>name</group>
38     </include>
39     <exclude>
40       <group>name</group>
41     </exclude>
42   </groups>
43
44   <filter>
45     <blacklist>
46       <directory suffix=".php">/path/to/files</directory>
47       <file>/path/to/file</file>
48       <file>
49           /path/to/file
50       </file>
51       <exclude>
52         <directory suffix=".php">/path/to/files</directory>
53         <file>/path/to/file</file>
54       </exclude>
55     </blacklist>
56     <whitelist addUncoveredFilesFromWhitelist="true"
57                processUncoveredFilesFromWhitelist="false">
58       <directory suffix=".php">/path/to/files</directory>
59       <file>/path/to/file</file>
60       <exclude>
61         <directory suffix=".php">/path/to/files</directory>
62         <file>/path/to/file</file>
63       </exclude>
64     </whitelist>
65   </filter>
66
67   <listeners>
68     <listener class="MyListener" file="/optional/path/to/MyListener.php">
69       <arguments>
70         <array>
71           <element key="0">
72             <string>Sebastian</string>
73           </element>
74         </array>
75         <integer>22</integer>
76         <string>April</string>
77         <double>19.78</double>
78         <null/>
79         <object class="stdClass"/>
80         <file>MyTestFile.php</file>
81         <directory>MyRelativePath</directory>
82       </arguments>
83     </listener>
84     <listener class="IncludePathListener" file="ConfigurationTest.php" />
85     <listener class="CompactArgumentsListener" file="/CompactArgumentsListener.php"><arguments><integer>42</integer></arguments></listener>
86   </listeners>
87
88   <logging>
89     <log type="coverage-html" target="/tmp/report" lowUpperBound="50" highLowerBound="90"/>
90     <log type="coverage-clover" target="/tmp/clover.xml"/>
91     <log type="json" target="/tmp/logfile.json"/>
92     <log type="plain" target="/tmp/logfile.txt"/>
93     <log type="tap" target="/tmp/logfile.tap"/>
94     <log type="junit" target="/tmp/logfile.xml" logIncompleteSkipped="false"/>
95     <log type="testdox-html" target="/tmp/testdox.html"/>
96     <log type="testdox-text" target="/tmp/testdox.txt"/>
97   </logging>
98
99   <php>
100     <includePath>.</includePath>
101     <includePath>/path/to/lib</includePath>
102     <ini name="foo" value="bar"/>
103     <const name="FOO" value="false"/>
104     <const name="BAR" value="true"/>
105     <var name="foo" value="false"/>
106     <env name="foo" value="true"/>
107     <post name="foo" value="bar"/>
108     <get name="foo" value="bar"/>
109     <cookie name="foo" value="bar"/>
110     <server name="foo" value="bar"/>
111     <files name="foo" value="bar"/>
112     <request name="foo" value="bar"/>
113   </php>
114
115   <selenium>
116     <browser name="Firefox on Linux"
117              browser="*firefox /usr/lib/firefox/firefox-bin"
118              host="my.linux.box"
119              port="4444"
120              timeout="30000"/>
121   </selenium>
122 </phpunit>
123