forked from ibexa/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit-integration-legacy.xml
45 lines (45 loc) · 1.78 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
<?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="\Ibexa\Contracts\Core\Test\Repository\SetupFactory\Legacy" />
<env name="backendVersion" value="5" />
<env name="fixtureDir" value="Legacy" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
<ini name="error_reporting" value="-1" />
<env name="DATABASE_URL" value="sqlite://:memory:" />
<env name="KERNEL_CLASS" value="Ibexa\Contracts\Core\Test\IbexaTestKernel"/>
<env name="SEARCH_ENGINE" value="legacy"/>
</php>
<testsuites>
<testsuite name="integration_core">
<directory>tests/integration/Core</directory>
</testsuite>
<testsuite name="integration_debug">
<directory>tests/integration/Debug</directory>
</testsuite>
<testsuite name="integration_io">
<directory>tests/integration/IO</directory>
</testsuite>
<testsuite name="integration_legacy_search_engine">
<directory>tests/integration/LegacySearchEngine</directory>
</testsuite>
<testsuite name="integration_repository_installer">
<directory>tests/integration/RepositoryInstaller</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">tests/integration</directory>
</whitelist>
</filter>
</phpunit>