You are here

protected function EntityReferenceTestBase::getEntityStorageClass in Feeds 8.3

Returns the entity storage class name to use in this test.

Return value

string The full name of the entity storage class.

1 call to EntityReferenceTestBase::getEntityStorageClass()
EntityReferenceTestBase::setUp in tests/src/Unit/Feeds/Target/EntityReferenceTestBase.php
1 method overrides EntityReferenceTestBase::getEntityStorageClass()
UserRoleTest::getEntityStorageClass in tests/src/Unit/Feeds/Target/UserRoleTest.php
Returns the entity storage class name to use in this test.

File

tests/src/Unit/Feeds/Target/EntityReferenceTestBase.php, line 77

Class

EntityReferenceTestBase
Base class for entity reference target tests.

Namespace

Drupal\Tests\feeds\Unit\Feeds\Target

Code

protected function getEntityStorageClass() {
  return EntityStorageInterface::class;
}