You are here

protected function FieldRenderedEntityTranslationTest::assertRows in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldRenderedEntityTranslationTest::assertRows()
  2. 9 core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldRenderedEntityTranslationTest::assertRows()

Ensures that the rendered results are working as expected.

@internal

Parameters

array $expected: The expected rows of the result.

File

core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php, line 293

Class

FieldRenderedEntityTranslationTest
Tests the rendering of the 'rendered_entity' field and translations.

Namespace

Drupal\Tests\views\Functional\Entity

Code

protected function assertRows(array $expected = []) : void {
  $actual = [];
  $rows = $this
    ->cssSelect('div.views-row');
  foreach ($rows as $row) {
    $actual[] = [
      'title' => $row
        ->find('xpath', (new CssSelectorConverter())
        ->toXPath('h2 a .field--name-title'))
        ->getText(),
    ];
  }
  $this
    ->assertEquals($actual, $expected);
}