protected function StateItemTest::setUp in State Machine 8
Set the default field storage backend for fields created during tests.
Overrides FieldKernelTestBase::setUp
File
- tests/
src/ Kernel/ StateItemTest.php, line 28
Class
- StateItemTest
- @coversDefaultClass \Drupal\state_machine\Plugin\Field\FieldType\StateItem @group state_machine
Namespace
Drupal\Tests\state_machine\KernelCode
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('user');
$this
->installEntitySchema('entity_test_with_bundle');
$this
->installConfig([
'state_machine_test',
]);
}