forked from doctrine-extensions/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
76 lines (76 loc) · 3.18 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
76
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage>
<include>
<directory>../src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Translatable Extension">
<directory suffix="Test.php">./tests/Gedmo/Translatable/</directory>
</testsuite>
<testsuite name="Sluggable Extension">
<directory suffix="Test.php">./tests/Gedmo/Sluggable/</directory>
</testsuite>
<testsuite name="Sortable Extension">
<directory suffix="Test.php">./tests/Gedmo/Sortable/</directory>
</testsuite>
<testsuite name="Tree Extension">
<directory suffix="Test.php">./tests/Gedmo/Tree/</directory>
</testsuite>
<testsuite name="Timestampable Extension">
<directory suffix="Test.php">./tests/Gedmo/Timestampable/</directory>
</testsuite>
<testsuite name="Blameable Extension">
<directory suffix="Test.php">./tests/Gedmo/Blameable/</directory>
</testsuite>
<testsuite name="IpTraceable Extension">
<directory suffix="Test.php">./tests/Gedmo/IpTraceable/</directory>
</testsuite>
<testsuite name="Mapping Extension">
<directory suffix="Test.php">./tests/Gedmo/Mapping/</directory>
</testsuite>
<testsuite name="Loggable Extension">
<directory suffix="Test.php">./tests/Gedmo/Loggable/</directory>
</testsuite>
<testsuite name="Sortable Extension">
<directory suffix="Test.php">./tests/Gedmo/Sortable/</directory>
</testsuite>
<testsuite name="Object wrappers">
<directory suffix="Test.php">./tests/Gedmo/Wrapper/</directory>
</testsuite>
<testsuite name="Translator extension">
<directory suffix="Test.php">./tests/Gedmo/Translator/</directory>
</testsuite>
<testsuite name="SoftDeleteable Extension">
<directory suffix="Test.php">./tests/Gedmo/SoftDeleteable/</directory>
</testsuite>
<testsuite name="Uploadable Extension">
<directory suffix="Test.php">./tests/Gedmo/Uploadable/</directory>
</testsuite>
<testsuite name="ReferenceIntegrity Extension">
<directory suffix="Test.php">./tests/Gedmo/ReferenceIntegrity/</directory>
</testsuite>
<testsuite name="References Extension">
<directory suffix="Test.php">./tests/Gedmo/References/</directory>
</testsuite>
</testsuites>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
<env name="MONGODB_SERVER" value="mongodb://mongodb:27017"/>
</php>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>