You are here

public function BaseFieldDefinitionTest::testFieldDescription in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::testFieldDescription()

Tests field description methods.

@covers ::getDescription

File

core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php, line 102

Class

BaseFieldDefinitionTest
Unit test for BaseFieldDefinition.

Namespace

Drupal\Tests\Core\Entity

Code

public function testFieldDescription() {
  $definition = BaseFieldDefinition::create($this->fieldType);
  $description = $this
    ->randomMachineName();
  $definition
    ->setDescription($description);
  $this
    ->assertEquals($description, $definition
    ->getDescription());
}