function AreaResultTest::testResult
Tests the results area handler.
File
- 
              core/modules/ views/ tests/ src/ Kernel/ Handler/ AreaResultTest.php, line 26 
Class
- AreaResultTest
- Tests the result area handler.
Namespace
Drupal\Tests\views\Kernel\HandlerCode
public function testResult() : void {
  $view = Views::getView('test_area_result');
  $view->setDisplay('default');
  $this->executeView($view);
  $output = $view->render();
  $output = \Drupal::service('renderer')->renderRoot($output);
  $this->setRawContent($output);
  $this->assertText('start: 1 | end: 5 | total: 5 | label: test_area_result | per page: 0 | current page: 1 | current record count: 5 | page count: 1');
  // Make sure that potentially dangerous content was stripped.
  $this->assertNoRaw('<script />');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
