tracking/phpunit.xml.dist

35 lines
918 B
Plaintext
Raw Normal View History

2020-02-25 21:19:18 +01:00
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
2020-02-25 21:19:18 +01:00
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
2020-02-25 21:19:18 +01:00
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false">
<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>
<filter>
<whitelist>
<directory suffix=".php">Classes</directory>
2020-02-25 21:19:18 +01:00
</whitelist>
</filter>
<php>
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
</php>
2020-02-25 21:19:18 +01:00
</phpunit>