-
Notifications
You must be signed in to change notification settings - Fork 203
/
phpunit-integration-legacy.xml
89 lines (89 loc) · 5.5 KB
/
phpunit-integration-legacy.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
<?xml version = '1.0' encoding = 'utf-8'?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
failOnWarning="true"
>
<php>
<env name="setupFactory" value="eZ\Publish\API\Repository\Tests\SetupFactory\Legacy" />
<env name="backendVersion" value="5" />
<env name="fixtureDir" value="Legacy" />
<ini name="error_reporting" value="-1" />
<env name="DATABASE_URL" value="sqlite:///:memory:" />
</php>
<testsuites>
<testsuite name="eZ\Publish\API\Repository">
<directory>eZ/Publish/API/Repository/Tests/Values/Content</directory>
<directory>eZ/Publish/API/Repository/Tests/Values/User/Limitation</directory>
<directory>eZ/Publish/API/Repository/Tests/FieldType/</directory>
<directory>eZ/Publish/API/Repository/Tests/Limitation</directory>
<directory>eZ/Publish/API/Repository/Tests/SearchService</directory>
<directory>eZ/Publish/API/Repository/Tests/URLAliasService</directory>
<file>eZ/Publish/API/Repository/Tests/RepositoryTest.php</file>
<file>eZ/Publish/API/Repository/Tests/PermissionResolverTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SectionServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceMaximumSupportedLanguagesTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/Parallel/ContentServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/NonRedundantFieldSetTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LocationServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/UserServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/RoleServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/TrashServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLAliasServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLWildcardServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ObjectStateServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SectionServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentTypeServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LocationServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/UserServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/RoleServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/TrashServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLAliasServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLWildcardServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ObjectStateServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceTranslationLanguageFallbackTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceLocationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchEngineIndexingTest.php</file>
<file>eZ/Publish/API/Repository/Tests/FieldTypeServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/BookmarkServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/NotificationServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/UserPreferenceServiceTest.php</file>
</testsuite>
<testsuite name="eZ\Publish\API\Repository\Tests\Regression">
<directory>eZ/Publish/API/Repository/Tests/Regression/</directory>
</testsuite>
<testsuite name="eZ\Publish\Core\FieldType\Tests\Integration">
<directory>eZ/Publish/Core/FieldType/Tests/Integration</directory>
</testsuite>
<testsuite name="gateway-integration">
<file>eZ/Publish/SPI/Tests/Search/Content/IndexerGatewayTest.php</file>
</testsuite>
<testsuite name="Ibexa\Tests\Integration\">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">eZ/Publish/API/Repository</directory>
<exclude>
<directory>eZ/Publish/API/Repository/Tests</directory>
<directory>eZ/Publish/API/Repository/Tutorials</directory>
</exclude>
</whitelist>
</filter>
</phpunit>