mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01:00
e35a1c288a
- drop attributes that are the same as the default values - add comment explaning the concept of multiple test suites
17 lines
669 B
XML
17 lines
669 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
|
backupGlobals="true"
|
|
bootstrap="../../.Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php"
|
|
colors="true"
|
|
>
|
|
<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>
|
|
</testsuites>
|
|
</phpunit>
|