mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 15:36:10 +01:00
Daniel Siepmann
16bc22aa44
Check which version to run and switch TYPO3 bootstrapping. Also allow tests to run with TYPO3 CMS 7.6 again.
32 lines
908 B
XML
32 lines
908 B
XML
<phpunit
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="Bootstrap.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>
|