function EntityBaseTest::testGetTypedData

Same name in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/EntityBaseTest.php \Drupal\KernelTests\Core\Entity\EntityBaseTest::testGetTypedData()
  2. 11.x core/tests/Drupal/KernelTests/Core/Entity/EntityBaseTest.php \Drupal\KernelTests\Core\Entity\EntityBaseTest::testGetTypedData()

Tests that the correct entity adapter is returned.

@covers ::getTypedData

File

core/tests/Drupal/KernelTests/Core/Entity/EntityBaseTest.php, line 35

Class

EntityBaseTest
Tests the functionality provided by \Drupal\Core\Entity\EntityBase.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testGetTypedData() : void {
    $bundle = EntityTestBundle::create([
        'id' => $this->randomMachineName(),
    ]);
    $bundle->save();
    $entity = EntityTestWithBundle::create([
        'type' => $bundle->id(),
        'name' => $this->randomString(),
    ]);
    $entity->save();
    $this->assertInstanceOf(ConfigEntityAdapter::class, $bundle->getTypedData());
    $this->assertInstanceOf(EntityAdapter::class, $entity->getTypedData());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.