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
|
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
cacheResultFile=".phpunit.cache/test-results"
testSuiteLoaderClass="Foo"
testSuiteLoaderFile="Foo.php"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
printerFile="foo"
printerClass="bar"
backupStaticAttributes="true"
registerMockObjectsFromTestArgumentsRecursively="true"
noInteraction="true"
verbose="true">
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<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>
<logging>
<text outputFile="logfile.txt"/>
<testdoxXml outputFile="testdox.xml"/>
</logging>
<testdoxGroups>
<include>
<group>bar</group>
</include>
<exclude>
<group>foo</group>
</exclude>
</testdoxGroups>
</phpunit>
|