function FieldCrudTest::setUp
Set the default field storage backend for fields created during tests.
Overrides FieldKernelTestBase::setUp
File
- 
              core/modules/ field/ tests/ src/ Kernel/ FieldCrudTest.php, line 44 
Class
- FieldCrudTest
- Create field entities by attaching fields to entities.
Namespace
Drupal\Tests\field\KernelCode
public function setUp() : void {
  parent::setUp();
  $this->fieldStorageDefinition = [
    'field_name' => mb_strtolower($this->randomMachineName()),
    'entity_type' => 'entity_test',
    'type' => 'test_field',
  ];
  $this->fieldStorage = FieldStorageConfig::create($this->fieldStorageDefinition);
  $this->fieldStorage
    ->save();
  $this->fieldDefinition = [
    'field_name' => $this->fieldStorage
      ->getName(),
    'entity_type' => 'entity_test',
    'bundle' => 'entity_test',
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
