protected function RawStringFormatterTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/field/tests/src/Kernel/String/RawStringFormatterTest.php \Drupal\Tests\field\Kernel\String\RawStringFormatterTest::setUp()
Overrides KernelTestBase::setUp
File
- core/modules/ field/ tests/ src/ Kernel/ String/ RawStringFormatterTest.php, line 56 
Class
- RawStringFormatterTest
- Tests the raw string formatter
Namespace
Drupal\Tests\field\Kernel\StringCode
protected function setUp() {
  parent::setUp();
  // Configure the theme system.
  $this
    ->installConfig([
    'system',
    'field',
  ]);
  \Drupal::service('router.builder')
    ->rebuild();
  $this
    ->installEntitySchema('entity_test');
  $this->entityType = 'entity_test';
  $this->bundle = $this->entityType;
  $this->fieldName = mb_strtolower($this
    ->randomMachineName());
  $field_storage = FieldStorageConfig::create([
    'field_name' => $this->fieldName,
    'entity_type' => $this->entityType,
    'type' => 'string_long',
  ]);
  $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();
}