protected function TaxonomyEntityReferenceTest::getExpectedTaxonomyParentReferenceValue in Entity Share 8.3
Same name and namespace in other branches
- 8.2 modules/entity_share_client/tests/src/Functional/TaxonomyEntityReferenceTest.php \Drupal\Tests\entity_share_client\Functional\TaxonomyEntityReferenceTest::getExpectedTaxonomyParentReferenceValue()
Helper function.
After the value_callback is re-evaluated, the entity id will be changed. So need a specific checker_callback.
Parameters
\Drupal\Core\Entity\ContentEntityInterface $entity: The content entity.
string $field_name: The field to retrieve the value.
Return value
array The expected value after import.
File
- modules/
entity_share_client/ tests/ src/ Functional/ TaxonomyEntityReferenceTest.php, line 181
Class
- TaxonomyEntityReferenceTest
- Functional test class for taxonomy entity reference field.
Namespace
Drupal\Tests\entity_share_client\FunctionalCode
protected function getExpectedTaxonomyParentReferenceValue(ContentEntityInterface $entity, string $field_name) {
return [
[
'target_id' => $this
->getEntityId('taxonomy_term', 'parent_tag'),
],
];
}