forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit-integration-legacy.xml
61 lines (61 loc) · 3.6 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
>
<php>
<env name="setupFactory" value="eZ\Publish\API\Repository\Tests\SetupFactory\Legacy" />
<env name="backendVersion" value="5" />
<env name="fixtureDir" value="Legacy" />
</php>
<testsuites>
<testsuite name="eZ\Publish\API\Repository">
<file>eZ/Publish/API/Repository/Tests/RepositoryTest.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/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/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/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/SearchServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LimitationTest.php</file>
<directory>eZ/Publish/API/Repository/Tests/Values/User/Limitation</directory>
<directory>eZ/Publish/API/Repository/Tests/FieldType/</directory>
</testsuite>
<testsuite name="eZ\Publish\API\Repository\Tests\Regression">
<directory>eZ/Publish/API/Repository/Tests/Regression/</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>