protected function FieldEntityTranslationTest::assertRows in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldEntityTranslationTest::assertRows()
- 9 core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldEntityTranslationTest::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/ FieldEntityTranslationTest.php, line 174
Class
- FieldEntityTranslationTest
- Tests the rendering of fields (base fields) and their translations.
Namespace
Drupal\Tests\views\Functional\EntityCode
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('.views-field-title span.field-content a'))
->getText(),
'sticky' => $row
->find('xpath', (new CssSelectorConverter())
->toXPath('.views-field-sticky span.field-content'))
->getText(),
];
}
$this
->assertEquals($expected, $actual);
}