-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (41 loc) · 1.76 KB
/
Copy pathphpunit.xml
File metadata and controls
42 lines (41 loc) · 1.76 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
requireCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
failOnRisky="true"
failOnWarning="true"
colors="true"
>
<testsuites>
<testsuite name="Netgen\Layouts">
<directory>tests/lib</directory>
</testsuite>
<testsuite name="Netgen\Bundle\LayoutsBundle">
<directory>tests/bundles/LayoutsBundle</directory>
</testsuite>
<testsuite name="Netgen\Bundle\LayoutsAdminBundle">
<directory>tests/bundles/LayoutsAdminBundle</directory>
<exclude>tests/bundles/LayoutsAdminBundle/Controller</exclude>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true" ignoreIndirectDeprecations="true">
<include>
<directory>lib</directory>
<directory>bundles/LayoutsBundle</directory>
<directory>bundles/LayoutsAdminBundle</directory>
</include>
<exclude>
<directory>bundles/*Bundle/Command</directory>
<directory>bundles/*Bundle/Controller</directory>
<directory>bundles/*Bundle/Resources</directory>
<file>bundles/LayoutsBundle/NetgenLayoutsBundle.php</file>
<file>bundles/LayoutsAdminBundle/NetgenLayoutsAdminBundle.php</file>
<file>bundles/LayoutsAdminBundle/DependencyInjection/ExtensionPlugin.php</file>
<file>bundles/LayoutsAdminBundle/DependencyInjection/NetgenLayoutsAdminExtension.php</file>
</exclude>
</source>
</phpunit>