function FilterStringTest::testFilterStringGroupedExposedNotStarts in Views (for Drupal 7) 8.3
File
- lib/Drupal/views/Tests/Handler/FilterStringTest.php, line 399
- Definition of Drupal\views\Tests\Handler\FilterStringTest.
Class
- FilterStringTest
- Tests the core Drupal\views\Plugin\views\filter\String handler.
Namespace
Drupal\views\Tests\Handler
Code
function testFilterStringGroupedExposedNotStarts() {
$filters = $this
->getGroupedExposedFilters();
$view = $this
->getBasicPageView();
$filters['description']['group_info']['default_group'] = 3;
$view
->setDisplay('page_1');
$view->displayHandlers['page_1']
->overrideOption('filters', $filters);
$this
->executeView($view);
$resultset = array(
array(
'name' => 'John',
),
array(
'name' => 'Ringo',
),
array(
'name' => 'Paul',
),
);
$this
->assertIdenticalResultset($view, $resultset, $this->column_map);
}