You are here

public function BaseFieldDefinitionTest::testFieldLabel 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::testFieldLabel()

Tests field label methods.

@covers ::getLabel

File

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

Class

BaseFieldDefinitionTest
Unit test for BaseFieldDefinition.

Namespace

Drupal\Tests\Core\Entity

Code

public function testFieldLabel() {
  $definition = BaseFieldDefinition::create($this->fieldType);
  $label = $this
    ->randomMachineName();
  $definition
    ->setLabel($label);
  $this
    ->assertEquals($label, $definition
    ->getLabel());
}