function BooleanItemTest::setUp

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

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

Overrides FieldKernelTestBase::setUp

File

core/modules/field/tests/src/Kernel/Boolean/BooleanItemTest.php, line 24

Class

BooleanItemTest
Tests the new entity API for the boolean field type.

Namespace

Drupal\Tests\field\Kernel\Boolean

Code

protected function setUp() : void {
  parent::setUp();
  // Create a boolean field and storage for validation.
  FieldStorageConfig::create([
    'field_name' => 'field_boolean',
    'entity_type' => 'entity_test',
    'type' => 'boolean',
  ])->save();
  FieldConfig::create([
    'entity_type' => 'entity_test',
    'field_name' => 'field_boolean',
    'bundle' => 'entity_test',
  ])->save();
  // Create a form display for the default form mode.
  \Drupal::service('entity_display.repository')->getFormDisplay('entity_test', 'entity_test')
    ->setComponent('field_boolean', [
    'type' => 'boolean_checkbox',
  ])
    ->save();
}

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