You are here

protected function NodeViewBuilderTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php \Drupal\Tests\node\Kernel\NodeViewBuilderTest::setUp()

Overrides EntityKernelTestBase::setUp

File

core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php, line 48

Class

NodeViewBuilderTest
Tests the node view builder.

Namespace

Drupal\Tests\node\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this->storage = $this->entityTypeManager
    ->getStorage('node');
  $this->viewBuilder = $this->entityTypeManager
    ->getViewBuilder('node');
  $this->renderer = $this->container
    ->get('renderer');
  $type = NodeType::create([
    'type' => 'article',
    'name' => 'Article',
  ]);
  $type
    ->save();
  $this
    ->installSchema('node', 'node_access');
  $this
    ->installConfig([
    'system',
    'node',
  ]);
}