You are here

protected function OptionsTestBase::setUp in Drupal 8

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

Parameters

bool $import_test_views: Should the views specified on the test class be imported. If you need to setup some additional stuff, like fields, you need to call false and then call createTestViews for your own.

Overrides ViewsKernelTestBase::setUp

1 call to OptionsTestBase::setUp()
ViewsDataTest::setUp in core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php
1 method overrides OptionsTestBase::setUp()
ViewsDataTest::setUp in core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php

File

core/modules/options/tests/src/Kernel/Views/OptionsTestBase.php, line 51

Class

OptionsTestBase
Base class for options views tests.

Namespace

Drupal\Tests\options\Kernel\Views

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp();
  $this
    ->mockStandardInstall();
  ViewTestData::createTestViews(get_class($this), [
    'options_test_views',
  ]);
  $settings = [];
  $settings['type'] = 'article';
  $settings['title'] = $this
    ->randomString();
  $settings['field_test_list_string'][]['value'] = $this->fieldValues[0];
  $settings['field_test_list_integer'][]['value'] = 0;
  $node = Node::create($settings);
  $node
    ->save();
  $this->nodes[] = $node;
  $node = $node
    ->createDuplicate();
  $node
    ->save();
  $this->nodes[] = $node;
}