StyleUnformattedTest.php in Drupal 9
File
core/modules/views/tests/src/Kernel/Plugin/StyleUnformattedTest.php
View source
<?php
namespace Drupal\Tests\views\Kernel\Plugin;
use Drupal\views\Views;
class StyleUnformattedTest extends StyleTestBase {
public static $testViews = [
'test_view',
];
public function testDefaultRowClasses() {
$view = Views::getView('test_view');
$view
->setDisplay();
$output = $view
->preview();
$this
->storeViewPreview(\Drupal::service('renderer')
->renderRoot($output));
$rows = $this->elements->body->div->div;
$count = 0;
$count_result = count($view->result);
foreach ($rows as $row) {
$count++;
$attributes = $row
->attributes();
$class = (string) $attributes['class'][0];
$this
->assertStringContainsString('views-row', $class, 'Make sure that the views row class is set right.');
}
$this
->assertSame($count, $count_result);
}
}