mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-09 23:56:14 +01:00

[FEATURE] Add a PHPUnit configuration file

This commit is contained in:
Oliver Klee 2016-05-13 13:53:01 +02:00
parent 31b1044fb5
commit dff6ea03a4

View file

@ -0,0 +1,24 @@
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="../../typo3/sysext/core/Build/UnitTestsBootstrap.php"
colors="false"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false"
>
<testsuites>
<testsuite name="Unit tests">
<directory>../Tests/Unit/</directory>
</testsuite>
<testsuite name="Functional tests">
<directory>../Tests/Functional/</directory>
</testsuite>
</testsuites>
</phpunit>