You are here

protected function ViewExecutableTest::setUpFixtures in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Kernel/ViewExecutableTest.php \Drupal\Tests\views\Kernel\ViewExecutableTest::setUpFixtures()
  2. 10 core/modules/views/tests/src/Kernel/ViewExecutableTest.php \Drupal\Tests\views\Kernel\ViewExecutableTest::setUpFixtures()

Sets up the configuration and schema of views and views_test_data modules.

Because the schema of views_test_data.module is dependent on the test using it, it cannot be enabled normally.

Overrides ViewsKernelTestBase::setUpFixtures

File

core/modules/views/tests/src/Kernel/ViewExecutableTest.php, line 89

Class

ViewExecutableTest
Tests the ViewExecutable class.

Namespace

Drupal\Tests\views\Kernel

Code

protected function setUpFixtures() {
  $this
    ->installEntitySchema('user');
  $this
    ->installEntitySchema('node');
  $this
    ->installEntitySchema('comment');
  $this
    ->installSchema('comment', [
    'comment_entity_statistics',
  ]);
  $this
    ->installConfig([
    'system',
    'field',
    'node',
    'comment',
  ]);
  NodeType::create([
    'type' => 'page',
    'name' => 'Page',
  ])
    ->save();
  $this
    ->addDefaultCommentField('node', 'page');
  parent::setUpFixtures();
  $this
    ->installConfig([
    'filter',
  ]);
}