function BaseFieldDefinitionTest::testFieldDescription
Tests field description methods.
@covers ::getDescription
      
    
File
- 
              core/tests/ Drupal/ Tests/ Core/ Entity/ BaseFieldDefinitionTest.php, line 106 
Class
- BaseFieldDefinitionTest
- Unit test for BaseFieldDefinition.
Namespace
Drupal\Tests\Core\EntityCode
public function testFieldDescription() : void {
  $definition = BaseFieldDefinition::create($this->fieldType);
  $description = $this->randomMachineName();
  $definition->setDescription($description);
  $this->assertEquals($description, $definition->getDescription());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
