-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
phpunit.xml.dist
75 lines (75 loc) · 2.85 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
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="true"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">packages/Ecotone/src</directory>
<directory suffix=".php">packages/Dbal/src</directory>
<directory suffix=".php">packages/PdoEventSourcing/src</directory>
<directory suffix=".php">packages/JmsConverter/src</directory>
<directory suffix=".php">packages/Laravel/src</directory>
<directory suffix=".php">packages/Symfony/App</directory>
<directory suffix=".php">packages/Symfony/DependencyInjection</directory>
<directory suffix=".php">packages/Symfony/SymfonyBundle</directory>
<directory suffix=".php">packages/Amqp/src</directory>
<directory suffix=".php">packages/Sqs/src</directory>
<directory suffix=".php">packages/Redis/src</directory>
<directory suffix=".php">packages/Kafka/src</directory>
</include>
<report>
<text outputFile="php://stdout" showOnlySummary="true" />
</report>
</coverage>
<php>
<server name="KERNEL_CLASS" value="Ecotone\SymfonyBundle\App\Kernel" />
<server name="APP_SECRET" value="test" />
<ini name="memory_limit" value="384M" />
</php>
<testsuites>
<testsuite name="Core tests">
<directory>packages/Ecotone/tests</directory>
</testsuite>
<testsuite name="Dbal tests">
<directory>packages/Dbal/tests</directory>
</testsuite>
<testsuite name="Event Sourcing tests">
<directory>packages/PdoEventSourcing/tests</directory>
</testsuite>
<testsuite name="Jms Converter tests">
<directory>packages/JmsConverter/tests</directory>
</testsuite>
<testsuite name="Laravel tests">
<directory>packages/Laravel/tests</directory>
</testsuite>
<testsuite name="Symfony tests">
<directory>packages/Symfony/tests</directory>
</testsuite>
<testsuite name="Enqueue tests">
<directory>packages/Enqueue/tests</directory>
</testsuite>
<testsuite name="Amqp tests">
<directory>packages/Amqp/tests</directory>
</testsuite>
<testsuite name="SQS tests">
<directory>packages/Sqs/tests</directory>
</testsuite>
<testsuite name="Redis tests">
<directory>packages/Redis/tests</directory>
</testsuite>
<testsuite name="Lite Application tests">
<directory>packages/LiteApplication/tests</directory>
</testsuite>
<testsuite name="Monorepo tests">
<directory>Monorepo/CrossModuleTests/Tests</directory>
</testsuite>
<testsuite name="OpenTelemetry tests">
<directory>packages/OpenTelemetry/tests</directory>
</testsuite>
<testsuite name="Kafka tests">
<directory>packages/Kafka/tests</directory>
</testsuite>
</testsuites>
</phpunit>