You are here

public static function TestsHelper::getSupportedFeatures in Search API Autocomplete 8

Returns all features that the test backend should support.

Return value

string[] The identifiers of all features this backend supports.

See also

\Drupal\search_api_test\Plugin\search_api\backend\TestBackend::getSupportedFeatures()

File

src/Tests/TestsHelper.php, line 27

Class

TestsHelper
Contains helper methods for running tests.

Namespace

Drupal\search_api_autocomplete\Tests

Code

public static function getSupportedFeatures() {
  return [
    'search_api_autocomplete',
  ];
}