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
|
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" failOnWarning="true" failOnRisky="true" bootstrap="./bootstrap.php" convertNoticesToExceptions="false" verbose="true" resolveDependencies="true">
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">../src/Phing/</directory>
</include>
</coverage>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="On"/>
<ini name="memory_limit" value="-1"/>
<ini name="date.timezone" value="UTC"/>
</php>
<testsuites>
<testsuite name="AllTests">
<directory>./Phing</directory>
<exclude>./Phing/Test/Support/BuildFileTest.php</exclude>
<exclude>./Phing/Test/Task/Ext/Http/BaseHttpTaskTest.php</exclude>
<exclude>./Phing/Test/Task/Ext/Svn/AbstractSvnTaskTest.php</exclude>
<exclude>./Phing/Test/Type/AbstractFileSetTest.php</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>
</phpunit>
|