2021-12-15 12:28:06 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
forceCoversAnnotation="false"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
|
|
|
verbose="false"
|
|
|
|
>
|
|
|
|
|
|
|
|
<testsuites>
|
2022-01-26 14:16:12 +01:00
|
|
|
<testsuite name="unit">
|
|
|
|
<directory>Tests/Unit/</directory>
|
|
|
|
</testsuite>
|
2021-12-15 12:28:06 +01:00
|
|
|
<testsuite name="functional">
|
|
|
|
<directory>Tests/Functional/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2022-08-09 09:21:45 +02:00
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">Classes</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
|
2021-12-15 12:28:06 +01:00
|
|
|
<php>
|
|
|
|
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
|
2022-07-13 15:58:05 +02:00
|
|
|
<ini name="date.timezone" value="Europe/Berlin"/>
|
2021-12-15 12:28:06 +01:00
|
|
|
</php>
|
|
|
|
</phpunit>
|