function FieldGroupRowsWebTest::testGroupRows
Testing when "Display all values in the same row" is checked.
File
- 
              core/modules/ views/ tests/ src/ Functional/ Handler/ FieldGroupRowsWebTest.php, line 100 
Class
- FieldGroupRowsWebTest
- Tests the "Display all values in the same row" setting.
Namespace
Drupal\Tests\views\Functional\HandlerCode
public function testGroupRows() {
  $this->drupalGet('test-group-rows');
  $result = $this->cssSelect('div.views-field-field-views-testing-group- div');
  $rendered_value = [];
  foreach ($result as $row) {
    $rendered_value[] = $row->getText();
  }
  $this->assertEquals([
    'a, b, c',
  ], $rendered_value);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
