StyleUnformattedTest.php in Zircon Profile 8
File
core/modules/views/src/Tests/Plugin/StyleUnformattedTest.php
View source
<?php
namespace Drupal\views\Tests\Plugin;
use Drupal\views\Views;
class StyleUnformattedTest extends StyleTestBase {
public static $testViews = array(
'test_view',
);
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
->assertTrue(strpos($class, 'views-row') !== FALSE, 'Make sure that the views row class is set right.');
}
$this
->assertIdentical($count, $count_result);
}
}