You are here

public function SqlContentEntityStorageTest::testGetRevisionTable 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::testGetRevisionTable()

Tests SqlContentEntityStorage::getRevisionTable().

@covers ::__construct @covers ::getRevisionTable

@dataProvider providerTestGetRevisionTable

Parameters

string $revision_table: The revision table to be returned by the mocked entity type.

string $expected: The expected return value of SqlContentEntityStorage::getRevisionTable().

File

core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php, line 174
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 testGetRevisionTable($revision_table, $expected) {
  $this->entityType
    ->expects($this
    ->once())
    ->method('isRevisionable')
    ->will($this
    ->returnValue(TRUE));
  $this->entityType
    ->expects($this
    ->once())
    ->method('getRevisionTable')
    ->will($this
    ->returnValue($revision_table));
  $this
    ->setUpEntityStorage();
  $this
    ->assertSame($expected, $this->entityStorage
    ->getRevisionTable());
}