mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 09:16:12 +01:00
Daniel Siepmann
705e3be85a
As testing framework is used, we can prefer dist again to speed up composer installation.
28 lines
735 B
XML
28 lines
735 B
XML
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.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>
|