35 lines
995 B
XML
35 lines
995 B
XML
<!--
|
|
Functional test suites setup
|
|
|
|
Functional tests should extend from \TYPO3\TestingFramework\Core\Tests\FunctionalTestCase,
|
|
take a look at this class for further documentation on how to run the suite.
|
|
|
|
TYPO3 CMS functional test suite also needs phpunit bootstrap code, the
|
|
file is located next to this .xml as FunctionalTestsBootstrap.php
|
|
-->
|
|
<phpunit
|
|
backupGlobals="true"
|
|
bootstrap="../../../../../vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Core tests">
|
|
<directory>../../Tests/Functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory>../../Classes/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|