function ViewsPreprocessTest::testPaginationHeadingLevelSet

Same name and namespace in other branches
  1. 11.x core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php \Drupal\Tests\views\Kernel\ViewsPreprocessTest::testPaginationHeadingLevelSet()

Tests template_preprocess_views_mini_pager() when a pagination_heading_level value is passed.

@covers ::template_preprocess_views_mini_pager

File

core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php, line 104

Class

ViewsPreprocessTest
Tests the preprocessing functionality in views.theme.inc.

Namespace

Drupal\Tests\views\Kernel

Code

public function testPaginationHeadingLevelSet() : void {
  require_once $this->root . '/core/modules/views/views.theme.inc';
  $variables = [
    'tags' => [],
    'quantity' => 9,
    'element' => 0,
    'pagination_heading_level' => 'h5',
    'parameters' => [],
  ];
  template_preprocess_views_mini_pager($variables);
  $this->assertEquals('h5', $variables['pagination_heading_level']);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.