mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:56:13 +01:00
46 lines
1.8 KiB
XML
46 lines
1.8 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"
|
||
|
backupGlobals="true"
|
||
|
bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
||
|
cacheResult="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
convertDeprecationsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
forceCoversAnnotation="false"
|
||
|
stopOnError="false"
|
||
|
stopOnFailure="false"
|
||
|
stopOnIncomplete="false"
|
||
|
stopOnSkipped="false"
|
||
|
verbose="false"
|
||
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
||
|
failOnWarning="true"
|
||
|
failOnRisky="true"
|
||
|
>
|
||
|
<testsuites>
|
||
|
<testsuite name="Functional 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" />
|
||
|
<!--
|
||
|
@deprecated: Set this to not suppress warnings, notices and deprecations in functional tests
|
||
|
with TYPO3 core v11 and up.
|
||
|
Will always be done with next major version.
|
||
|
To still suppress warnings, notices and deprecations, do NOT define the constant at all.
|
||
|
-->
|
||
|
<const name="TYPO3_TESTING_FUNCTIONAL_REMOVE_ERROR_HANDLER" value="true" />
|
||
|
<ini name="display_errors" value="1" />
|
||
|
<env name="TYPO3_CONTEXT" value="Testing" />
|
||
|
</php>
|
||
|
</phpunit>
|