You are here

public function RowEntityRenderersTest::testRevisionBaseTable in Drupal 9

Same name and namespace in other branches
  1. 8 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 150

Class

RowEntityRenderersTest
Tests the entity row renderers.

Namespace

Drupal\Tests\views\Kernel\Entity

Code

public function testRevisionBaseTable() {
  $view = Views::getView('test_entity_row_renderers_revisions_base');
  $view
    ->execute();
  $this
    ->assertIdenticalResultset($view, $this->ids, [
    'nid' => 'nid',
    'uid' => 'uid',
  ]);
}