You are here

public function ConfigEntityTypeTest::testConstructBadStorage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityTypeTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityTypeTest::testConstructBadStorage()

@covers ::__construct

@expectedException \Drupal\Core\Config\Entity\Exception\ConfigEntityStorageClassException @expectedExceptionMessage \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage is not \Drupal\Core\Config\Entity\ConfigEntityStorage or it does not extend it

File

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

Class

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

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testConstructBadStorage() {
  new ConfigEntityType([
    'id' => 'example_config_entity_type',
    'handlers' => [
      'storage' => '\\Drupal\\Core\\Entity\\KeyValueStore\\KeyValueEntityStorage',
    ],
  ]);
}