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

Tests the getConfigPrefix() method.

@dataProvider providerTestGetConfigPrefix

@covers ::getConfigPrefix

File

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

Class

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

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testGetConfigPrefix($definition, $expected) {
  $entity_type = $this
    ->setUpConfigEntityType($definition);
  $this
    ->assertSame($expected, $entity_type
    ->getConfigPrefix());
}