mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 09:16:12 +01:00
Daniel Siepmann
9d20524706
Use testing framework configuration. Use new db. Begin with replacement of old TYPO3_DB.
33 lines
989 B
XML
33 lines
989 B
XML
<phpunit
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
|
|
colors="true"
|
|
convertErrorsToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="functional-tests">
|
|
<directory>.</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../../Classes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="../../.Build/report/functional/html" lowUpperBound="35" highLowerBound="70"/>
|
|
<log type="coverage-clover" target="../../.Build/report/functional/clover/coverage"/>
|
|
</logging>
|
|
</phpunit>
|