mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 15:16:11 +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.
28 lines
661 B
XML
28 lines
661 B
XML
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="Bootstrap.php"
|
|
|
|
colors="true"
|
|
convertErrorsToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="unit-tests">
|
|
<directory>.</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../../Classes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|