8
0
Fork 0
TestingTools/phpunit.xml

40 Zeilen
1.3 KiB
XML

2022-11-11 11:30:45 +01:00
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2024-06-16 13:49:57 +02:00
backupGlobals="true"
2024-06-16 14:10:22 +02:00
bootstrap="../../../source/bootstrap.php"
2024-06-16 13:49:57 +02:00
colors="false"
backupStaticAttributes="false"
2022-11-11 11:30:45 +01:00
convertErrorsToExceptions="true"
2024-06-16 13:49:57 +02:00
convertNoticesToExceptions="false"
2022-11-11 11:30:45 +01:00
convertWarningsToExceptions="true"
2024-06-16 13:49:57 +02:00
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
beStrictAboutTestsThatDoNotTestAnything="false"
verbose="false"
2022-11-11 11:30:45 +01:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2024-06-16 13:49:57 +02:00
<testsuites>
<testsuite name="testingTools">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>../.php-cs-fixer.php</file>
<directory>../Tests/</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<php>
<const name="OXID_PHP_UNIT" value="true"/>
</php>
2022-11-11 11:30:45 +01:00
</phpunit>