public function RowEntityRenderersTest::testRevisionBaseTable in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php \Drupal\Tests\views\Kernel\Entity\RowEntityRenderersTest::testRevisionBaseTable()
Tests the row renderer with a revision base table.
File
- core/
modules/ views/ tests/ src/ Kernel/ Entity/ RowEntityRenderersTest.php, line 153
Class
- RowEntityRenderersTest
- Tests the entity row renderers.
Namespace
Drupal\Tests\views\Kernel\EntityCode
public function testRevisionBaseTable() {
$view = Views::getView('test_entity_row_renderers_revisions_base');
$view
->execute();
$this
->assertIdenticalResultset($view, $this->ids, [
'nid' => 'nid',
'uid' => 'uid',
]);
}