diff --git a/tests/src/Kernel/FactoryType/EntityFieldEntityReferenceFactoryTypeTest.php b/tests/src/Kernel/FactoryType/EntityFieldEntityReferenceFactoryTypeTest.php index 18370ad..2eb0ace 100644 --- a/tests/src/Kernel/FactoryType/EntityFieldEntityReferenceFactoryTypeTest.php +++ b/tests/src/Kernel/FactoryType/EntityFieldEntityReferenceFactoryTypeTest.php @@ -250,7 +250,7 @@ public function testCreateRandomTitle(): void { */ public static function providerTaxonomyFieldValues(): array { return [ - 'Test content entity reference' => [ + 'Taxonomy Test content entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_taxonomy_term', @@ -259,7 +259,7 @@ public static function providerTaxonomyFieldValues(): array { 'label' => 'Test content entity reference', ], ], - 'Test config entity reference' => [ + 'Taxonomy Test config entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_taxonomy_term', @@ -271,7 +271,7 @@ public static function providerTaxonomyFieldValues(): array { 'cardinality' => 1, ], ], - 'Test node entity reference' => [ + 'Taxonomy Test node entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_node', @@ -283,7 +283,7 @@ public static function providerTaxonomyFieldValues(): array { 'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED, ], ], - 'Test node page only entity reference' => [ + 'Taxonomy Test node page only entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_node', @@ -297,7 +297,7 @@ public static function providerTaxonomyFieldValues(): array { 'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED, ], ], - 'Test user entity reference' => [ + 'Taxonomy Test user entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_user', @@ -306,7 +306,7 @@ public static function providerTaxonomyFieldValues(): array { 'label' => 'Test user entity reference', ], ], - 'Test file entity reference' => [ + 'Taxonomy Test file entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_file', @@ -315,7 +315,7 @@ public static function providerTaxonomyFieldValues(): array { 'label' => 'Test file entity reference', ], ], - 'Test content custom entity reference with string ID' => [ + 'Taxonomy Test content custom entity reference with string ID' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_entity_test_string_id', @@ -324,7 +324,7 @@ public static function providerTaxonomyFieldValues(): array { 'label' => 'Test content custom entity reference with string ID', ], ], - 'Test content custom entity reference' => [ + 'Taxonomy Test content custom entity reference' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_test_entity_test', diff --git a/tests/src/Kernel/FactoryType/EntityFieldFactoryTypeTest.php b/tests/src/Kernel/FactoryType/EntityFieldFactoryTypeTest.php index 4a87f9e..5312bf2 100644 --- a/tests/src/Kernel/FactoryType/EntityFieldFactoryTypeTest.php +++ b/tests/src/Kernel/FactoryType/EntityFieldFactoryTypeTest.php @@ -250,7 +250,7 @@ public function testCreateRandomTitle(): void { */ public static function providerTaxonomyFieldValues(): array { return [ - 'text field' => [ + 'Taxonomy text field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -258,7 +258,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'text', ], ], - 'boolean field' => [ + 'Taxonomy boolean field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -266,7 +266,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'boolean', ], ], - 'string field' => [ + 'Taxonomy string field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -274,7 +274,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'string', ], ], - 'string long field' => [ + 'Taxonomy string long field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -282,7 +282,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'string_long', ], ], - 'integer field' => [ + 'Taxonomy integer field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -290,7 +290,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'integer', ], ], - 'float field' => [ + 'Taxonomy float field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -298,7 +298,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'float', ], ], - 'decimal field' => [ + 'Taxonomy decimal field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -306,7 +306,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'decimal', ], ], - 'email field' => [ + 'Taxonomy email field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -314,7 +314,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'email', ], ], - 'datetime field' => [ + 'Taxonomy datetime field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo', @@ -322,7 +322,7 @@ public static function providerTaxonomyFieldValues(): array { 'type' => 'datetime', ], ], - 'daterange field' => [ + 'Taxonomy daterange field' => [ [ 'entity_type' => 'taxonomy_term', 'name' => 'field_foo',