function EmailItemTest::setUp
Same name in other branches
- 9 core/modules/field/tests/src/Kernel/Email/EmailItemTest.php \Drupal\Tests\field\Kernel\Email\EmailItemTest::setUp()
- 10 core/modules/field/tests/src/Kernel/Email/EmailItemTest.php \Drupal\Tests\field\Kernel\Email\EmailItemTest::setUp()
- 11.x core/modules/field/tests/src/Kernel/Email/EmailItemTest.php \Drupal\Tests\field\Kernel\Email\EmailItemTest::setUp()
Overrides FieldKernelTestBase::setUp
File
-
core/
modules/ field/ tests/ src/ Kernel/ Email/ EmailItemTest.php, line 19
Class
- EmailItemTest
- Tests the new entity API for the email field type.
Namespace
Drupal\Tests\field\Kernel\EmailCode
protected function setUp() {
parent::setUp();
// Create an email field storage and field for validation.
FieldStorageConfig::create([
'field_name' => 'field_email',
'entity_type' => 'entity_test',
'type' => 'email',
])->save();
FieldConfig::create([
'entity_type' => 'entity_test',
'field_name' => 'field_email',
'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_email', [
'type' => 'email_default',
])
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.