~ballot/wordpress/openstack-objectstorage-breaking-insight

« back to all changes in this revision

Viewing changes to vendor/phpunit/phpunit/tests/_files/configuration.xml

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
         colors="false"
 
8
         stderr="false"
 
9
         convertErrorsToExceptions="true"
 
10
         convertNoticesToExceptions="true"
 
11
         convertWarningsToExceptions="true"
 
12
         forceCoversAnnotation="false"
 
13
         mapTestClassNameToCoveredClassName="false"
 
14
         printerClass="PHPUnit_TextUI_ResultPrinter"
 
15
         stopOnFailure="false"
 
16
         testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
 
17
         timeoutForSmallTests="1"
 
18
         timeoutForMediumTests="10"
 
19
         timeoutForLargeTests="60"
 
20
         beStrictAboutTestsThatDoNotTestAnything="false"
 
21
         beStrictAboutOutputDuringTests="false"
 
22
         beStrictAboutTestSize="false"
 
23
         beStrictAboutTodoAnnotatedTests="false"
 
24
         checkForUnintentionallyCoveredCode="false"
 
25
         verbose="false">
 
26
  <testsuites>
 
27
    <testsuite name="My Test Suite">
 
28
      <directory suffix="Test.php" phpVersion="5.3.0" phpVersionOperator=">=">/path/to/files</directory>
 
29
      <file phpVersion="5.3.0" phpVersionOperator=">=">/path/to/MyTest.php</file>
 
30
    </testsuite>
 
31
  </testsuites>
 
32
 
 
33
  <groups>
 
34
    <include>
 
35
      <group>name</group>
 
36
    </include>
 
37
    <exclude>
 
38
      <group>name</group>
 
39
    </exclude>
 
40
  </groups>
 
41
 
 
42
  <filter>
 
43
    <blacklist>
 
44
      <directory suffix=".php">/path/to/files</directory>
 
45
      <file>/path/to/file</file>
 
46
      <exclude>
 
47
        <directory suffix=".php">/path/to/files</directory>
 
48
        <file>/path/to/file</file>
 
49
      </exclude>
 
50
    </blacklist>
 
51
    <whitelist addUncoveredFilesFromWhitelist="true"
 
52
               processUncoveredFilesFromWhitelist="false">
 
53
      <directory suffix=".php">/path/to/files</directory>
 
54
      <file>/path/to/file</file>
 
55
      <exclude>
 
56
        <directory suffix=".php">/path/to/files</directory>
 
57
        <file>/path/to/file</file>
 
58
      </exclude>
 
59
    </whitelist>
 
60
  </filter>
 
61
 
 
62
  <listeners>
 
63
    <listener class="MyListener" file="/optional/path/to/MyListener.php">
 
64
      <arguments>
 
65
        <array>
 
66
          <element key="0">
 
67
            <string>Sebastian</string>
 
68
          </element>
 
69
        </array>
 
70
        <integer>22</integer>
 
71
        <string>April</string>
 
72
        <double>19.78</double>
 
73
        <null/>
 
74
        <object class="stdClass"/>
 
75
        <file>MyTestFile.php</file>
 
76
        <directory>MyRelativePath</directory>
 
77
      </arguments>
 
78
    </listener>
 
79
    <listener class="IncludePathListener" file="ConfigurationTest.php" />
 
80
    <listener class="CompactArgumentsListener" file="/CompactArgumentsListener.php"><arguments><integer>42</integer></arguments></listener>
 
81
  </listeners>
 
82
 
 
83
  <logging>
 
84
    <log type="coverage-html" target="/tmp/report" lowUpperBound="50" highLowerBound="90"/>
 
85
    <log type="coverage-clover" target="/tmp/clover.xml"/>
 
86
    <log type="json" target="/tmp/logfile.json"/>
 
87
    <log type="plain" target="/tmp/logfile.txt"/>
 
88
    <log type="tap" target="/tmp/logfile.tap"/>
 
89
    <log type="junit" target="/tmp/logfile.xml" logIncompleteSkipped="false"/>
 
90
    <log type="testdox-html" target="/tmp/testdox.html"/>
 
91
    <log type="testdox-text" target="/tmp/testdox.txt"/>
 
92
  </logging>
 
93
 
 
94
  <php>
 
95
    <includePath>.</includePath>
 
96
    <includePath>/path/to/lib</includePath>
 
97
    <ini name="foo" value="bar"/>
 
98
    <const name="FOO" value="false"/>
 
99
    <const name="BAR" value="true"/>
 
100
    <var name="foo" value="false"/>
 
101
    <env name="foo" value="true"/>
 
102
    <post name="foo" value="bar"/>
 
103
    <get name="foo" value="bar"/>
 
104
    <cookie name="foo" value="bar"/>
 
105
    <server name="foo" value="bar"/>
 
106
    <files name="foo" value="bar"/>
 
107
    <request name="foo" value="bar"/>
 
108
  </php>
 
109
 
 
110
  <selenium>
 
111
    <browser name="Firefox on Linux"
 
112
             browser="*firefox /usr/lib/firefox/firefox-bin"
 
113
             host="my.linux.box"
 
114
             port="4444"
 
115
             timeout="30000"/>
 
116
  </selenium>
 
117
</phpunit>
 
118