You are here

protected function ViewTestBase::executeView in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Functional/ViewTestBase.php \Drupal\Tests\views\Functional\ViewTestBase::executeView()
  2. 10 core/modules/views/tests/src/Functional/ViewTestBase.php \Drupal\Tests\views\Functional\ViewTestBase::executeView()

Executes a view.

Parameters

\Drupal\views\ViewExecutable $view: The view object.

array $args: (optional) An array of the view arguments to use for the view.

41 calls to ViewTestBase::executeView()
ArgumentDefaultTest::testArgumentDefaultPlugin in core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php
Tests the argument default test plugin.
CustomBooleanTest::testCustomOption in core/modules/views_ui/tests/src/Functional/CustomBooleanTest.php
Tests the setting and output of custom labels for boolean values.
CustomBooleanTest::testCustomOptionTemplate in core/modules/views_ui/tests/src/Functional/CustomBooleanTest.php
Tests the setting and output of custom labels for boolean values.
DefaultViewRecentCommentsTest::testBlockDisplay in core/modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php
Tests the block defined by the comments_recent view.
DefaultViewsTest::testArchiveView in core/modules/views/tests/src/Functional/DefaultViewsTest.php
Tests the archive view.

... See full list

File

core/modules/views/tests/src/Functional/ViewTestBase.php, line 123

Class

ViewTestBase
Defines a base class for Views testing in the full web test environment.

Namespace

Drupal\Tests\views\Functional

Code

protected function executeView(ViewExecutable $view, $args = []) {

  // A view does not really work outside of a request scope, due to many
  // dependencies like the current user.
  $view
    ->setDisplay();
  $view
    ->preExecute($args);
  $view
    ->execute();
}