function 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());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
