function PagerPluginBaseTest::testGetPagerId
Tests the getPagerId() method.
See also
\Drupal\views\Plugin\views\pager\PagerPluginBase::getPagerId()
File
-
core/
modules/ views/ tests/ src/ Unit/ Plugin/ pager/ PagerPluginBaseTest.php, line 133
Class
- PagerPluginBaseTest
- @coversDefaultClass \Drupal\views\Plugin\views\pager\PagerPluginBase[[api-linebreak]] @group views
Namespace
Drupal\Tests\views\Unit\Plugin\pagerCode
public function testGetPagerId() : void {
// Should return 0 if 'id' is not set.
$this->assertEquals(0, $this->pager
->getPagerId());
$this->pager->options['id'] = 1;
$this->assertEquals(1, $this->pager
->getPagerId());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.