StyleUnformattedTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Kernel/Plugin/StyleUnformattedTest.php
  2. 8.9.x core/modules/views/tests/src/Kernel/Plugin/StyleUnformattedTest.php
  3. 10 core/modules/views/tests/src/Kernel/Plugin/StyleUnformattedTest.php

Namespace

Drupal\Tests\views\Kernel\Plugin

File

core/modules/views/tests/src/Kernel/Plugin/StyleUnformattedTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Kernel\Plugin;

use Drupal\views\Views;

/**
 * Tests unformatted style functionality.
 *
 * @group views
 */
class StyleUnformattedTest extends StyleTestBase {
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_view',
  ];
  
  /**
   * Make sure that the default css classes works as expected.
   */
  public function testDefaultRowClasses() : void {
    $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);
  }

}

Classes

Title Deprecated Summary
StyleUnformattedTest Tests unformatted style functionality.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.