You are here

public function ConfigEntityTypeTest::testConstruct in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityTypeTest::testConstruct()
  2. 10 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityTypeTest::testConstruct()

@covers ::__construct

File

core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php, line 91

Class

ConfigEntityTypeTest
@coversDefaultClass \Drupal\Core\Config\Entity\ConfigEntityType @group Config

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testConstruct() {
  $config_entity = new ConfigEntityType([
    'id' => 'example_config_entity_type',
  ]);
  $this
    ->assertEquals('Drupal\\Core\\Config\\Entity\\ConfigEntityStorage', $config_entity
    ->getStorageClass());
}