mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 06:16:12 +02:00
tea/Configuration/PHPUnit/ModelTests.xml
Oliver Klee e35a1c288a
[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
2018-05-26 20:44:18 +02:00

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>