function PagerPluginBaseTest::testGetTotalItems
Tests the getTotalItems() method.
See also
\Drupal\views\Plugin\views\pager\PagerPluginBase::getTotalItems()
File
- 
              core/modules/ views/ tests/ src/ Unit/ Plugin/ pager/ PagerPluginBaseTest.php, line 118 
Class
- PagerPluginBaseTest
- @coversDefaultClass \Drupal\views\Plugin\views\pager\PagerPluginBase[[api-linebreak]] @group views
Namespace
Drupal\Tests\views\Unit\Plugin\pagerCode
public function testGetTotalItems() {
  // Should return 0 by default.
  $this->assertEquals(0, $this->pager
    ->getTotalItems());
  $this->pager->total_items = 10;
  $this->assertEquals(10, $this->pager
    ->getTotalItems());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
