You are here

protected function ContentEntityReferenceTest::getExpectedContentReferenceValue in Entity Share 8.2

Same name and namespace in other branches
  1. 8.3 modules/entity_share_client/tests/src/Functional/ContentEntityReferenceTest.php \Drupal\Tests\entity_share_client\Functional\ContentEntityReferenceTest::getExpectedContentReferenceValue()

Helper function.

After the value_callback is re-evaluated, the nid 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/ContentEntityReferenceTest.php, line 116

Class

ContentEntityReferenceTest
Functional test class for content entity reference field.

Namespace

Drupal\Tests\entity_share_client\Functional

Code

protected function getExpectedContentReferenceValue(ContentEntityInterface $entity, string $field_name) {
  return [
    [
      'target_id' => $this
        ->getEntityId('node', 'es_test_to_be_referenced'),
    ],
  ];
}