You are here

protected function TextWithSummaryItemTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php \Drupal\Tests\text\Kernel\TextWithSummaryItemTest::setUp()

Set the default field storage backend for fields created during tests.

Overrides FieldKernelTestBase::setUp

File

core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php, line 40

Class

TextWithSummaryItemTest
Tests using entity fields of the text summary field type.

Namespace

Drupal\Tests\text\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('entity_test_rev');

  // Create the necessary formats.
  $this
    ->installConfig([
    'filter',
  ]);
  FilterFormat::create([
    'format' => 'no_filters',
    'filters' => [],
  ])
    ->save();
}