You are here

public function DataDefinitionFetcherTest::testFetchingEntityReference in Typed Data API enhancements 8

@covers ::fetchDefinitionByPropertyPath

File

tests/src/Kernel/DataDefinitionFetcherTest.php, line 122

Class

DataDefinitionFetcherTest
Tests that data fetcher definition fetching functions work correctly.

Namespace

Drupal\Tests\typed_data\Kernel

Code

public function testFetchingEntityReference() {
  $target_definition = $this->nodeDefinition
    ->getPropertyDefinition('uid')
    ->getItemDefinition()
    ->getPropertyDefinition('entity');
  $fetched_definition = $this->dataFetcher
    ->fetchDefinitionByPropertyPath($this->nodeDefinition, 'uid.entity');
  $this
    ->assertSame($target_definition, $fetched_definition);
}