protected function IntegrationTest::configureBackendAndSave in Search API 8
Lets derived backend integration tests fill their server create form.
Parameters
array $edit: The common server form values so far.
1 call to IntegrationTest::configureBackendAndSave()
- IntegrationTest::createServer in tests/
src/ Functional/ IntegrationTest.php - Tests creating a search server via the UI.
File
- tests/
src/ Functional/ IntegrationTest.php, line 251
Class
- IntegrationTest
- Tests the overall functionality of the Search API framework and admin UI.
Namespace
Drupal\Tests\search_api\FunctionalCode
protected function configureBackendAndSave(array $edit) {
// Nothing to configure here for the test backend.
$this
->submitForm($edit, 'Save');
}