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:
parent
31b1044fb5
commit
dff6ea03a4
1 changed files with 24 additions and 0 deletions
24
Configuration/PHPUnit/UnitTests.xml
Normal file
24
Configuration/PHPUnit/UnitTests.xml
Normal 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>
|
Loading…
Reference in a new issue