mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 03:36:09 +01:00
Daniel Siepmann
0e5cd38176
The test ensures import runs with a small example set of events. We needed to alter fetching of images, in order to properly mock responses.
29 lines
855 B
XML
29 lines
855 B
XML
<?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"
|
|
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="functional">
|
|
<directory>Tests/Functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<php>
|
|
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
|
|
</php>
|
|
</phpunit>
|