function ExposedFormUITest::assertNoGroupedFilterErrors
Same name in other branches
- 8.9.x core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php \Drupal\Tests\views_ui\Functional\ExposedFormUITest::assertNoGroupedFilterErrors()
- 10 core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php \Drupal\Tests\views_ui\Functional\ExposedFormUITest::assertNoGroupedFilterErrors()
- 11.x core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php \Drupal\Tests\views_ui\Functional\ExposedFormUITest::assertNoGroupedFilterErrors()
Asserts that there are no Grouped Filters errors.
@internal
Parameters
string $message: The assert message.
1 call to ExposedFormUITest::assertNoGroupedFilterErrors()
- ExposedFormUITest::testGroupedFilterAdminUi in core/
modules/ views_ui/ tests/ src/ Functional/ ExposedFormUITest.php - Tests the admin interface of exposed grouped filters.
File
-
core/
modules/ views_ui/ tests/ src/ Functional/ ExposedFormUITest.php, line 303
Class
- ExposedFormUITest
- Tests exposed forms UI functionality.
Namespace
Drupal\Tests\views_ui\FunctionalCode
protected function assertNoGroupedFilterErrors(string $message = '') : void {
foreach ($this->groupFormUiErrors as $error) {
if (empty($message)) {
$this->assertSession()
->responseNotContains($error);
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.