You are here

protected function RowPluginTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/tests/src/Functional/Views/RowPluginTest.php \Drupal\Tests\node\Functional\Views\RowPluginTest::setUp()
  2. 10 core/modules/node/tests/src/Functional/Views/RowPluginTest.php \Drupal\Tests\node\Functional\Views\RowPluginTest::setUp()

Overrides NodeTestBase::setUp

File

core/modules/node/tests/src/Functional/Views/RowPluginTest.php, line 44

Class

RowPluginTest
Tests the node row plugin.

Namespace

Drupal\Tests\node\Functional\Views

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  $this
    ->drupalCreateContentType([
    'type' => 'article',
  ]);

  // Create two nodes.
  for ($i = 0; $i < 2; $i++) {
    $this->nodes[] = $this
      ->drupalCreateNode([
      'type' => 'article',
      'body' => [
        [
          'value' => $this
            ->randomMachineName(42),
          'format' => filter_default_format(),
          'summary' => $this
            ->randomMachineName(),
        ],
      ],
    ]);
  }
}