mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:36:12 +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"
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
||||||
backupGlobals="true"
|
backupGlobals="true"
|
||||||
backupStaticAttributes="false"
|
|
||||||
bootstrap="../../.Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php"
|
bootstrap="../../.Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php"
|
||||||
colors="true"
|
colors="true"
|
||||||
convertErrorsToExceptions="true"
|
|
||||||
convertWarningsToExceptions="true"
|
|
||||||
forceCoversAnnotation="false"
|
|
||||||
processIsolation="false"
|
|
||||||
stopOnError="false"
|
|
||||||
stopOnFailure="false"
|
|
||||||
stopOnIncomplete="false"
|
|
||||||
stopOnSkipped="false"
|
|
||||||
verbose="false"
|
|
||||||
>
|
>
|
||||||
<testsuites>
|
<testsuites>
|
||||||
|
<!--
|
||||||
|
There can also be multiple "testsuite" elements, e.g., for executing all unit tests from multiple extensions.
|
||||||
|
-->
|
||||||
<testsuite name="Model unit tests">
|
<testsuite name="Model unit tests">
|
||||||
<directory>../../Tests/Unit/Domain/Model</directory>
|
<directory>../../Tests/Unit/Domain/Model</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
|
|
Loading…
Reference in a new issue