You are here

public function FieldDefinitionTest::testFieldLabel in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testFieldLabel()
  2. 9 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testFieldLabel()

@covers ::getLabel @dataProvider factoryTypeProvider

File

core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php, line 110

Class

FieldDefinitionTest
Unit test for the FieldDefinition class.

Namespace

Drupal\Tests\Core\Entity

Code

public function testFieldLabel($factory_name) {
  $definition = $this
    ->initializeFieldUsingFactory($factory_name);
  $label = $this
    ->randomMachineName();
  $definition
    ->setLabel($label);
  $this
    ->assertEquals($label, $definition
    ->getLabel());
}