abstract protected function EntityResourceTestBase::createEntity in Drupal 8
Same name and namespace in other branches
- 9 core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php \Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
2 calls to EntityResourceTestBase::createEntity()
- EntityResourceTestBase::setUp in core/
modules/ rest/ tests/ src/ Functional/ EntityResource/ EntityResourceTestBase.php - EntityResourceTestBase::testDelete in core/
modules/ rest/ tests/ src/ Functional/ EntityResource/ EntityResourceTestBase.php - Tests a DELETE request for an entity, plus edge cases to ensure good DX.
50 methods override EntityResourceTestBase::createEntity()
- ActionResourceTestBase::createEntity in core/
modules/ system/ tests/ src/ Functional/ Rest/ ActionResourceTestBase.php - Creates the entity to be tested.
- BaseFieldOverrideResourceTestBase::createEntity in core/
tests/ Drupal/ FunctionalTests/ Rest/ BaseFieldOverrideResourceTestBase.php - Creates the entity to be tested.
- BlockContentResourceTestBase::createEntity in core/
modules/ block_content/ tests/ src/ Functional/ Rest/ BlockContentResourceTestBase.php - Creates the entity to be tested.
- BlockContentTypeResourceTestBase::createEntity in core/
modules/ block_content/ tests/ src/ Functional/ Rest/ BlockContentTypeResourceTestBase.php - Creates the entity to be tested.
- BlockResourceTestBase::createEntity in core/
modules/ block/ tests/ src/ Functional/ Rest/ BlockResourceTestBase.php - Creates the entity to be tested.
File
- core/
modules/ rest/ tests/ src/ Functional/ EntityResource/ EntityResourceTestBase.php, line 251
Class
- EntityResourceTestBase
- Even though there is the generic EntityResource, it's necessary for every entity type to have its own test, because they each have different fields, validation constraints, et cetera. It's not because the generic case works, that every case…
Namespace
Drupal\Tests\rest\Functional\EntityResourceCode
protected abstract function createEntity();