2023-04-11 15:12:51 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2024-02-05 15:51:10 +01:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
2023-04-11 15:12:51 +02:00
|
|
|
backupGlobals="false"
|
|
|
|
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
2024-02-05 15:51:10 +01:00
|
|
|
cacheDirectory=".phpunit.cache"
|
|
|
|
backupStaticProperties="false"
|
|
|
|
requireCoverageMetadata="false"
|
2023-04-11 15:12:51 +02:00
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="functional">
|
|
|
|
<directory>Tests/Functional/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2024-02-05 15:51:10 +01:00
|
|
|
<source>
|
2023-04-11 15:12:51 +02:00
|
|
|
<include>
|
|
|
|
<directory suffix=".php">Classes</directory>
|
|
|
|
</include>
|
2024-02-05 15:51:10 +01:00
|
|
|
</source>
|
2023-04-11 15:12:51 +02:00
|
|
|
|
|
|
|
<php>
|
|
|
|
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
|
|
|
|
</php>
|
|
|
|
</phpunit>
|