2023-10-25 19:08:36 +02:00
|
|
|
<?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"
|
|
|
|
backupGlobals="true"
|
2023-12-19 12:29:19 +01:00
|
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
2024-01-08 00:41:08 +01:00
|
|
|
bootstrap="../.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
|
2023-10-25 19:08:36 +02:00
|
|
|
cacheResult="false"
|
|
|
|
colors="true"
|
|
|
|
convertDeprecationsToExceptions="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
2023-12-19 12:29:19 +01:00
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
failOnRisky="true"
|
|
|
|
failOnWarning="true"
|
2023-10-25 19:08:36 +02:00
|
|
|
forceCoversAnnotation="false"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
|
|
|
verbose="false"
|
|
|
|
>
|
2024-01-02 22:34:49 +01:00
|
|
|
<coverage/>
|
2023-10-25 19:08:36 +02:00
|
|
|
<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 -->
|
2023-12-19 12:17:04 +01:00
|
|
|
<const name="TYPO3_MODE" value="BE"/>
|
|
|
|
<ini name="display_errors" value="1"/>
|
|
|
|
<env name="TYPO3_CONTEXT" value="Testing"/>
|
2023-10-25 19:08:36 +02:00
|
|
|
</php>
|
|
|
|
</phpunit>
|