File: configuration_xinclude.xml

package info (click to toggle)
phpunit 12.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 50,160 kB
  • sloc: php: 101,772; xml: 2,084; makefile: 124; sh: 99
file content (74 lines) | stat: -rw-r--r-- 2,571 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8" ?>

<phpunit backupGlobals="true"
         backupStaticAttributes="false"
         bootstrap="/path/to/bootstrap.php"
         columns="80"
         colors="false"
         stderr="false"
         convertDeprecationsToExceptions="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         forceCoversAnnotation="false"
         stopOnFailure="false"
         stopOnWarning="false"
         failOnWarning="false"
         failOnRisky="false"
         extensionsDirectory="/tmp"
         printerClass="PHPUnit\TextUI\DefaultResultPrinter"
         defaultTestSuite="My Test Suite"
         beStrictAboutChangesToGlobalState="false"
         beStrictAboutOutputDuringTests="false"
         beStrictAboutTestsThatDoNotTestAnything="false"
         beStrictAboutCoversAnnotation="false"
         defaultTimeLimit="123"
         enforceTimeLimit="false"
         timeoutForSmallTests="1"
         timeoutForMediumTests="10"
         timeoutForLargeTests="60"
         executionOrder="default"
         resolveDependencies="false">
         <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
             href="configuration.xml"
             parse="xml"
             xpointer="xpointer(/phpunit/testsuites)" />

  <groups>
    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
          href="configuration.xml"
        parse="xml"
        xpointer="xpointer(/phpunit/groups/*)" />
  </groups>


  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
      href="configuration_codecoverage.xml"
      parse="xml"
      xpointer="xpointer(/phpunit/coverage)" />
  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
      href="configuration_logging.xml"
      parse="xml"
      xpointer="xpointer(/phpunit/logging)" />

  <php>
    <includePath>.</includePath>
    <includePath>/path/to/lib</includePath>
    <ini name="foo" value="bar"/>
    <ini name="highlight.keyword" value="#123456"/>
    <ini name="highlight.string" value="TEST_FILES_PATH"/>
    <const name="FOO" value="false"/>
    <const name="BAR" value="true"/>
    <var name="foo" value="false"/>
    <env name="foo" value="true"/>
    <env name="foo_force" value="forced" force="true"/>
    <env name="bar" value="true" verbatim="true"/>
    <post name="foo" value="bar"/>
    <get name="foo" value="bar"/>
    <cookie name="foo" value="bar"/>
    <server name="foo" value="bar"/>
    <files name="foo" value="bar"/>
    <request name="foo" value="bar"/>
  </php>
</phpunit>