You are here

public function SqlContentEntityStorageTest::providerTestGetRevisionDataTable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest::providerTestGetRevisionDataTable()

Provides test data for testGetRevisionDataTable().

Return value

array[] An nested array where each inner array has the revision data table to be returned by the mocked entity type as the first value and the expected return value of SqlContentEntityStorage::getRevisionDataTable() as the second value.

File

core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php, line 268
Contains \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest.

Class

SqlContentEntityStorageTest
@coversDefaultClass \Drupal\Core\Entity\Sql\SqlContentEntityStorage @group Entity

Namespace

Drupal\Tests\Core\Entity\Sql

Code

public function providerTestGetRevisionDataTable() {
  return array(
    // Test that the entity type's revision data table is used, if provided.
    array(
      'entity_test_field_revision',
      'entity_test_field_revision',
    ),
    // Test that the storage falls back to the entity type ID with a
    // '_field_revision' suffix.
    array(
      NULL,
      'entity_test_field_revision',
    ),
  );
}