You are here

protected function BookPendingRevisionTest::setUp in Drupal 8

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

Overrides KernelTestBase::setUp

File

core/modules/book/tests/src/Kernel/BookPendingRevisionTest.php, line 34

Class

BookPendingRevisionTest
Tests that the Book module handles pending revisions correctly.

Namespace

Drupal\Tests\book\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('user');
  $this
    ->installEntitySchema('node');
  $this
    ->installSchema('book', [
    'book',
  ]);
  $this
    ->installSchema('node', [
    'node_access',
  ]);
  $this
    ->installConfig([
    'node',
    'book',
    'field',
  ]);
}