ExtSearch/phpunit.xml

44 lines
1.6 KiB
XML
Raw Permalink Normal View History

2024-02-09 18:44:23 +01:00
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="true"
2024-06-26 13:42:37 +02:00
bootstrap="../../../source/bootstrap.php"
2024-02-09 18:44:23 +01:00
colors="false"
2024-06-26 13:42:37 +02:00
backupStaticAttributes="false"
2024-02-09 18:44:23 +01:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
2024-06-26 13:42:37 +02:00
beStrictAboutTestsThatDoNotTestAnything="false"
2024-02-09 18:44:23 +01:00
verbose="false"
2024-06-26 13:42:37 +02:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="Unit">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="Integration">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">Application</directory>
<directory suffix=".php">Core</directory>
<directory suffix=".php">Modules</directory>
<directory suffix=".php">public</directory>
<directory suffix=".php">setup</directory>
</include>
<exclude>
<file>../.php-cs-fixer.php</file>
<file>../IntelliSenseHelper.php</file>
</exclude>
</coverage>
<php>
<const name="OXID_PHP_UNIT" value="true"/>
</php>
2024-02-09 18:44:23 +01:00
</phpunit>