mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 09:56:13 +01:00
[TASK] Streamline the PHPUnit configuration file (#18)
- drop attributes that are the same as the default values - add comment explaning the concept of multiple test suites
This commit is contained in:
parent
1b8c800443
commit
e35a1c288a
1 changed files with 3 additions and 10 deletions
|
@ -3,20 +3,13 @@
|
|||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
||||
backupGlobals="true"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../.Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
forceCoversAnnotation="false"
|
||||
processIsolation="false"
|
||||
stopOnError="false"
|
||||
stopOnFailure="false"
|
||||
stopOnIncomplete="false"
|
||||
stopOnSkipped="false"
|
||||
verbose="false"
|
||||
>
|
||||
<testsuites>
|
||||
<!--
|
||||
There can also be multiple "testsuite" elements, e.g., for executing all unit tests from multiple extensions.
|
||||
-->
|
||||
<testsuite name="Model unit tests">
|
||||
<directory>../../Tests/Unit/Domain/Model</directory>
|
||||
</testsuite>
|
||||
|
|
Loading…
Reference in a new issue