function BlockContentTypeTest::createEntity
Same name in other branches
- 8.9.x core/modules/jsonapi/tests/src/Functional/BlockContentTypeTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTypeTest::createEntity()
- 10 core/modules/jsonapi/tests/src/Functional/BlockContentTypeTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTypeTest::createEntity()
- 11.x core/modules/jsonapi/tests/src/Functional/BlockContentTypeTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTypeTest::createEntity()
Overrides ResourceTestBase::createEntity
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ BlockContentTypeTest.php, line 52
Class
- BlockContentTypeTest
- JSON:API integration test for the "BlockContentType" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$block_content_type = BlockContentType::create([
'id' => 'pascal',
'label' => 'Pascal',
'revision' => FALSE,
'description' => 'Provides a competitive alternative to the "basic" type',
]);
$block_content_type->save();
return $block_content_type;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.