function EntityTypeTest::testGetStorageClass

Tests the getStorageClass() method.

File

core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php, line 179

Class

EntityTypeTest
@coversDefaultClass \Drupal\Core\Entity\EntityType[[api-linebreak]] @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

public function testGetStorageClass() {
  $controller = $this->getTestHandlerClass();
  $entity_type = $this->setUpEntityType([
    'handlers' => [
      'storage' => $controller,
    ],
  ]);
  $this->assertSame($controller, $entity_type->getStorageClass());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.