mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-15 01:36:11 +01:00
Daniel Siepmann
46144de0a7
To ensure the whole process is still working. Setup environment and execute request of backend module through extbase. Ensure expected records are created.
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
beStrictAboutCoversAnnotation="true"
|
|
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>Tests/Unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="functional">
|
|
<directory>Tests/Functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">Classes</directory>
|
|
</include>
|
|
</coverage>
|
|
|
|
<php>
|
|
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
|
|
</php>
|
|
</phpunit>
|