protected function BackendTest::checkBackendSpecificFeatures in Search API 8
Checks backend specific features.
Overrides BackendTestBase::checkBackendSpecificFeatures
File
- modules/
search_api_db/ tests/ src/ Kernel/ BackendTest.php, line 100
Class
- BackendTest
- Tests index and search capabilities using the Database search backend.
Namespace
Drupal\Tests\search_api_db\KernelCode
protected function checkBackendSpecificFeatures() {
$this
->checkMultiValuedInfo();
$this
->searchWithRandom();
$this
->setServerMatchMode();
$this
->searchSuccessPartial();
$this
->setServerMatchMode('prefix');
$this
->searchSuccessStartsWith();
$this
->editServerMinChars();
$this
->searchSuccessMinChars();
$this
->checkUnknownOperator();
$this
->checkDbQueryAlter();
$this
->checkFieldIdChanges();
}