function TestItemTest::setUp
Same name in other branches
- 9 core/modules/field/tests/src/Kernel/TestItemTest.php \Drupal\Tests\field\Kernel\TestItemTest::setUp()
- 10 core/modules/field/tests/src/Kernel/TestItemTest.php \Drupal\Tests\field\Kernel\TestItemTest::setUp()
- 11.x core/modules/field/tests/src/Kernel/TestItemTest.php \Drupal\Tests\field\Kernel\TestItemTest::setUp()
Overrides FieldKernelTestBase::setUp
File
-
core/
modules/ field/ tests/ src/ Kernel/ TestItemTest.php, line 33
Class
- TestItemTest
- Tests the new entity API for the test field type.
Namespace
Drupal\Tests\field\KernelCode
protected function setUp() {
parent::setUp();
// Create a 'test_field' field and storage for validation.
FieldStorageConfig::create([
'field_name' => $this->fieldName,
'entity_type' => 'entity_test',
'type' => 'test_field',
])
->save();
FieldConfig::create([
'entity_type' => 'entity_test',
'field_name' => $this->fieldName,
'bundle' => 'entity_test',
])
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.