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