function ExposedFormTest::setUp

Same name and namespace in other branches
  1. 11.x core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php \Drupal\Tests\views\Functional\Plugin\ExposedFormTest::setUp()
  2. 10 core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php \Drupal\Tests\views\Functional\Plugin\ExposedFormTest::setUp()
  3. 8.9.x core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php \Drupal\Tests\views\Functional\Plugin\ExposedFormTest::setUp()

File

core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php, line 51

Class

ExposedFormTest
Tests exposed forms functionality.

Namespace

Drupal\Tests\views\Functional\Plugin

Code

protected function setUp($import_test_views = TRUE, $modules = [
  'views_test_config',
]) : void {
  parent::setUp($import_test_views, $modules);
  $this->enableViewsTestModule();
  $this->drupalCreateContentType([
    'type' => 'article',
  ]);
  $this->drupalCreateContentType([
    'type' => 'page',
  ]);
  $this->nodes = [];
  // Create some random nodes.
  for ($i = 0; $i < 5; $i++) {
    $this->nodes[] = $this->drupalCreateNode([
      'type' => 'article',
    ]);
    $this->nodes[] = $this->drupalCreateNode([
      'type' => 'page',
    ]);
  }
}

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