public function ConfigEntityAdapterTest::testGetValue in Drupal 9
Same name and namespace in other branches
- 8 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\EntityCode
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());
}