function FieldRenderedEntityTranslationTest::assertRows
Same name in other branches
- 9 core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldRenderedEntityTranslationTest::assertRows()
- 10 core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldRenderedEntityTranslationTest::assertRows()
- 11.x 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.
Parameters
array $expected: The expected rows of the result.
1 call to FieldRenderedEntityTranslationTest::assertRows()
- FieldRenderedEntityTranslationTest::testTranslationRows in core/
modules/ views/ tests/ src/ Functional/ Entity/ FieldRenderedEntityTranslationTest.php - Tests that different translation mechanisms can be used for base fields.
File
-
core/
modules/ views/ tests/ src/ Functional/ Entity/ FieldRenderedEntityTranslationTest.php, line 291
Class
- FieldRenderedEntityTranslationTest
- Tests the rendering of the 'rendered_entity' field and translations.
Namespace
Drupal\Tests\views\Functional\EntityCode
protected function assertRows(array $expected = []) {
$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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.