-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
44 lines (42 loc) · 1.76 KB
/
phpunit.xml
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
43
44
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
requireCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
</php>
<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>
<include>
<directory suffix=".php">lib</directory>
<directory suffix=".php">bundles/LayoutsBundle</directory>
<directory suffix=".php">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>