2020-09-23 08:42:34 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2023-07-06 17:55:05 +02:00
|
|
|
bootstrap=".Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
2020-09-23 08:42:34 +02:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
forceCoversAnnotation="false"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
|
|
|
verbose="false"
|
|
|
|
>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="unit">
|
|
|
|
<directory>Tests/Unit/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">Classes</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
</phpunit>
|