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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
<?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"
failOnIncomplete="false"
failOnRisky="false"
failOnSkipped="false"
failOnWarning="false"
extensionsDirectory="/tmp"
printerClass="PHPUnit\TextUI\DefaultResultPrinter"
testSuiteLoaderClass="PHPUnit\Runner\StandardTestSuiteLoader"
defaultTestSuite="My Test Suite"
beStrictAboutChangesToGlobalState="false"
beStrictAboutOutputDuringTests="false"
beStrictAboutResourceUsageDuringSmallTests="false"
beStrictAboutTestsThatDoNotTestAnything="false"
beStrictAboutTodoAnnotatedTests="false"
beStrictAboutCoversAnnotation="false"
defaultTimeLimit="123"
enforceTimeLimit="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false"
executionOrder="default"
noInteraction="true">
<testsuites>
<testsuite name="My Test Suite">
<directory suffix="Test.php" phpVersion="5.3.0" phpVersionOperator=">=">/path/to/files</directory>
<file phpVersion="5.3.0" phpVersionOperator=">=">/path/to/MyTest.php</file>
</testsuite>
</testsuites>
<groups>
<include>
<group>name</group>
</include>
<exclude>
<group>name</group>
</exclude>
</groups>
<testdoxGroups>
<include>
<group>name</group>
</include>
<exclude>
<group>name</group>
</exclude>
</testdoxGroups>
<listeners>
<listener class="MyListener" file="/optional/path/to/MyListener.php">
<arguments>
<array>
<element key="0">
<string>Sebastian</string>
</element>
</array>
<integer>22</integer>
<string>April</string>
<double>19.78</double>
<null/>
<object class="stdClass"/>
<file>MyTestFile.php</file>
<directory>MyRelativePath</directory>
<boolean>true</boolean>
</arguments>
</listener>
<listener class="IncludePathListener" file="ConfigurationTest.php"/>
<listener class="CompactArgumentsListener" file="/CompactArgumentsListener.php">
<arguments>
<integer>42</integer>
<boolean>false</boolean>
</arguments>
</listener>
</listeners>
<extensions>
<extension class="MyExtension" file="/optional/path/to/MyExtension.php">
<arguments>
<array>
<element key="0">
<string>Sebastian</string>
</element>
</array>
<integer>22</integer>
<string>April</string>
<double>19.78</double>
<null/>
<object class="stdClass"/>
<file>MyTestFile.php</file>
<directory>MyRelativePath</directory>
</arguments>
</extension>
<extension class="IncludePathExtension" file="ConfigurationTest.php"/>
<extension class="CompactArgumentsExtension" file="/CompactArgumentsExtension.php">
<arguments>
<integer>42</integer>
</arguments>
</extension>
</extensions>
<php>
<includePath>.</includePath>
<includePath>/path/to/lib</includePath>
<ini name="foo" value="bar"/>
<ini name="highlight.keyword" value="#123456"/>
<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>
|