public function IntegrationTest::configureFilterPage in Search API 8
Tests that the "no values changed" message on the "Processors" tab works.
2 calls to IntegrationTest::configureFilterPage()
- IntegrationTest::testFramework in tests/
src/ Functional/ IntegrationTest.php - Tests various operations via the Search API's admin UI.
- IntegrationTest::testIntegerIndex in tests/
src/ Functional/ IntegrationTest.php - Tests what happens when an index has an integer as id/label.
File
- tests/
src/ Functional/ IntegrationTest.php, line 1216
Class
- IntegrationTest
- Tests the overall functionality of the Search API framework and admin UI.
Namespace
Drupal\Tests\search_api\FunctionalCode
public function configureFilterPage() {
$this
->drupalGet($this
->getIndexPath('processors'));
$this
->submitForm([], 'Save');
$this
->assertSession()
->pageTextContains('No values were changed.');
}