mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 03:36:13 +01:00
8d80a25d43
The PHPUnit configuration option `controlGarbageCollector` was
introduced for PHPUnit 10 and 11 only and hence is not available
for version 9 yet (the version we're using). So we cannot use
this configuration option yet.
This reverts commit 7dea2ddc0b
.
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
cacheResult="false"
|
|
colors="true"
|
|
convertDeprecationsToExceptions="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
failOnRisky="true"
|
|
failOnWarning="true"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false"
|
|
>
|
|
<coverage/>
|
|
<testsuites>
|
|
<testsuite name="Unit tests">
|
|
<!--
|
|
This path either needs an adaption in extensions, or an extension's
|
|
test location path needs to be given to phpunit.
|
|
-->
|
|
<directory suffix="Test.php">./</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<!-- @deprecated: will be removed with next major version, constant TYPO3_MODE is deprecated -->
|
|
<const name="TYPO3_MODE" value="BE"/>
|
|
<ini name="display_errors" value="1"/>
|
|
<env name="TYPO3_CONTEXT" value="Testing"/>
|
|
</php>
|
|
</phpunit>
|