-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.core.xml
92 lines (84 loc) · 3.81 KB
/
phpunit.core.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php"
executionOrder="random"
forceCoversAnnotation="true"
convertDeprecationsToExceptions="false"
beStrictAboutCoversAnnotation="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
>
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
</php>
<testsuites>
<testsuite name="unit">
<directory>tests/Unit</directory>
<directory>core/backoffice/tests/Unit</directory>
<directory>core/ingesting/tests/Analyzer/Unit</directory>
<directory>core/ingesting/tests/Errata/Unit</directory>
<directory>core/ingesting/tests/PublicJob/Unit</directory>
<directory>core/ingesting/tests/SharedKernel/Unit</directory>
<directory>core/publishing/tests/Cms/Unit</directory>
<directory>core/websiteBFF/tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
<directory>core/backoffice/tests/Integration</directory>
<directory>core/ingesting/tests/Analyzer/Integration</directory>
<directory>core/ingesting/tests/Errata/Integration</directory>
<directory>core/ingesting/tests/PublicJob/Integration</directory>
<directory>core/ingesting/tests/SharedKernel/Integration</directory>
<directory>core/publishing/tests/Cms/Integration</directory>
<directory>core/websiteBFF/tests/Integration</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/Functional</directory>
<directory>core/backoffice/tests/Functional</directory>
<directory>core/ingesting/tests/Analyzer/Functional</directory>
<directory>core/ingesting/tests/Errata/Functional</directory>
<directory>core/ingesting/tests/PublicJob/Functional</directory>
<directory>core/publishing/tests/Cms/Functional</directory>
<directory>core/websiteBFF/tests/Functional</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>slow</group>
<group>io-network</group>
<group>io-database</group>
<group>quarantine</group>
</exclude>
</groups>
<coverage cacheDirectory="var/tools/phpunit/core/.phpunit.cache"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">core/backoffice/src</directory>
<directory suffix=".php">core/ingesting/src</directory>
<directory suffix=".php">core/publishing/src</directory>
<directory suffix=".php">core/websiteBBF/src</directory>
</include>
</coverage>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<!-- Run `composer require symfony/panther` before enabling this extension -->
<!--
<extensions>
<extension class="Symfony\Component\Panther\ServerExtension" />
</extensions>
-->
<extensions>
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
</extensions>
</phpunit>