function EntityFormDisplayValidationTest::testTargetBundleMustExist
Same name in other branches
- 10 core/tests/Drupal/KernelTests/Core/Entity/EntityFormDisplayValidationTest.php \Drupal\KernelTests\Core\Entity\EntityFormDisplayValidationTest::testTargetBundleMustExist()
Tests that the target bundle of the entity form display is checked.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityFormDisplayValidationTest.php, line 103
Class
- EntityFormDisplayValidationTest
- Tests validation of entity_form_display entities.
Namespace
Drupal\KernelTests\Core\EntityCode
public function testTargetBundleMustExist() : void {
$this->entity
->set('bundle', 'superhero');
$this->assertValidationErrors([
'' => "The 'bundle' property cannot be changed.",
'bundle' => "The 'superhero' bundle does not exist on the 'node' entity type.",
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.