function StringFormatterTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Kernel/String/StringFormatterTest.php \Drupal\Tests\field\Kernel\String\StringFormatterTest::setUp()
  2. 8.9.x core/modules/field/tests/src/Kernel/String/StringFormatterTest.php \Drupal\Tests\field\Kernel\String\StringFormatterTest::setUp()
  3. 11.x core/modules/field/tests/src/Kernel/KernelString/StringFormatterTest.php \Drupal\Tests\field\Kernel\KernelString\StringFormatterTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/field/tests/src/Kernel/KernelString/StringFormatterTest.php, line 65

Class

StringFormatterTest
Tests the creation of text fields.

Namespace

Drupal\Tests\field\Kernel\KernelString

Code

protected function setUp() : void {
  parent::setUp();
  // Configure the theme system.
  $this->installConfig([
    'system',
    'field',
  ]);
  $this->installEntitySchema('entity_test_rev');
  $this->installEntitySchema('entity_test_label');
  $this->entityType = 'entity_test_rev';
  $this->bundle = $this->entityType;
  $this->fieldName = $this->randomMachineName();
  $field_storage = FieldStorageConfig::create([
    'field_name' => $this->fieldName,
    'entity_type' => $this->entityType,
    'type' => 'string',
  ]);
  $field_storage->save();
  $instance = FieldConfig::create([
    'field_storage' => $field_storage,
    'bundle' => $this->bundle,
    'label' => $this->randomMachineName(),
  ]);
  $instance->save();
  $this->display = \Drupal::service('entity_display.repository')->getViewDisplay($this->entityType, $this->bundle)
    ->setComponent($this->fieldName, [
    'type' => 'string',
    'settings' => [],
  ]);
  $this->display
    ->save();
  $this->entityTypeManager = \Drupal::entityTypeManager();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.