public function FieldDefinitionTest::testFieldDescription in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testFieldDescription()
- 10 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testFieldDescription()
@covers ::getDescription @dataProvider factoryTypeProvider
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ FieldDefinitionTest.php, line 133
Class
- FieldDefinitionTest
- Unit test for the FieldDefinition class.
Namespace
Drupal\Tests\Core\EntityCode
public function testFieldDescription($factory_name) {
$definition = $this
->initializeFieldUsingFactory($factory_name);
$description = $this
->randomMachineName();
$definition
->setDescription($description);
$this
->assertEquals($description, $definition
->getDescription());
}