function SqlContentEntityStorageTest::testGetBaseTable
Tests SqlContentEntityStorage::getBaseTable().
@legacy-covers ::__construct @legacy-covers ::getBaseTable
Attributes
#[DataProvider('providerTestGetBaseTable')]
Parameters
string $base_table: The base table to be returned by the mocked entity type.
string $expected: The expected return value of SqlContentEntityStorage::getBaseTable().
File
-
core/
tests/ Drupal/ Tests/ Core/ Entity/ Sql/ SqlContentEntityStorageTest.php, line 160
Class
Namespace
Drupal\Tests\Core\Entity\SqlCode
public function testGetBaseTable($base_table, $expected) : void {
$this->entityType
->expects($this->once())
->method('getBaseTable')
->willReturn($base_table);
$this->setUpEntityStorage();
$this->assertSame($expected, $this->entityStorage
->getBaseTable());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.