-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit-integration-legacy.xml
32 lines (32 loc) · 1.54 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<php>
<env name="setupFactory" value="Netgen\IbexaSearchExtra\Tests\Integration\SetupFactory\Legacy" />
<ini name="error_reporting" value="-1" />
<env name="SEARCH_ENGINE" value="legacy"/>
</php>
<testsuites>
<testsuite name="Legacy Search Engine tests">
<directory suffix="Test.php">./tests/lib/Integration/</directory>
<!-- Exclude tests not supported with Legacy search engine -->
<exclude>tests/lib/Integration/API/CustomFieldFacetTest.php</exclude>
<exclude>tests/lib/Integration/API/FulltextSpellcheckCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/SubdocumentFieldSortClauseTest.php</exclude>
<exclude>tests/lib/Integration/API/SubdocumentQueryCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/FulltextSpellcheckCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/ExtraFieldsTest.php</exclude>
<exclude>tests/lib/Integration/Solr/RawFacetDomainTest.php</exclude>
<exclude>tests/lib/Integration/Solr/RawFacetTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./bundle</directory>
<directory>./lib</directory>
</whitelist>
</filter>
</phpunit>