You are here

public function ConfigEntityAdapterTest::testGetValue in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php \Drupal\KernelTests\Core\Entity\ConfigEntityAdapterTest::testGetValue()
  2. 10 core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php \Drupal\KernelTests\Core\Entity\ConfigEntityAdapterTest::testGetValue()

@covers ::getValue

File

core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php, line 109

Class

ConfigEntityAdapterTest
Tests entity adapter for configuration entities.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testGetValue() {
  $adapter = ConfigEntityAdapter::createFromEntity($this->entity);
  $this
    ->assertEquals($this->entity->weight, $adapter
    ->get('weight')
    ->getValue());
  $this
    ->assertEquals($this->entity
    ->id(), $adapter
    ->get('id')
    ->getValue());
  $this
    ->assertEquals($this->entity->label, $adapter
    ->get('label')
    ->getValue());
}