tracking/phpunit.xml.dist

36 lines
1 KiB
Plaintext
Raw Permalink Normal View History

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