You are here

function FilterStringTest::testFilterStringGroupedExposedStarts in Views (for Drupal 7) 8.3

File

lib/Drupal/views/Tests/Handler/FilterStringTest.php, line 349
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 testFilterStringGroupedExposedStarts() {
  $filters = $this
    ->getGroupedExposedFilters();
  $view = $this
    ->getBasicPageView();

  // Filter: Name, Operator: starts, Value: George
  $filters['description']['group_info']['default_group'] = 2;
  $view
    ->setDisplay('page_1');
  $view->displayHandlers['page_1']
    ->overrideOption('filters', $filters);
  $this
    ->executeView($view);
  $resultset = array(
    array(
      'name' => 'George',
    ),
  );
  $this
    ->assertIdenticalResultset($view, $resultset, $this->column_map);
}