-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpunit-integration-solr.xml
28 lines (28 loc) · 1.23 KB
/
phpunit-integration-solr.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
<?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\EzPlatformSearchExtra\Tests\Integration\SetupFactory\Solr" />
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="Solr Search Engine tests">
<directory suffix="Test.php">./tests/lib/Integration/</directory>
<!-- Exclude tests not supported with Solr search engine -->
<exclude>tests/lib/Integration/API/HasUserCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/UserEmailCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/UserEnabledCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/UserIdCriterionTest.php</exclude>
<exclude>tests/lib/Integration/API/UserLoginCriterionTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./bundle</directory>
<directory>./lib</directory>
</whitelist>
</filter>
</phpunit>