forked from redaxo/redaxo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
27 lines (27 loc) · 1.15 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
bootstrap=".tools/bootstrap.php"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true"
colors="true"
printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"
>
<testsuites>
<testsuite name="core">
<directory suffix="_test.php">redaxo/src/core/tests</directory>
</testsuite>
<testsuite name="media_manager">
<directory suffix="_test.php">redaxo/src/addons/media_manager/tests</directory>
</testsuite>
<testsuite name="mediapool">
<directory suffix="_test.php">redaxo/src/addons/mediapool/tests</directory>
</testsuite>
<testsuite name="structure">
<directory suffix="_test.php">redaxo/src/addons/structure/tests</directory>
<directory suffix="_test.php">redaxo/src/addons/structure/plugins/content/tests</directory>
</testsuite>
</testsuites>
</phpunit>