You are here

StyleTestBase.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/views/src/Tests/Plugin/StyleTestBase.php

File

core/modules/views/src/Tests/Plugin/StyleTestBase.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views\Tests\Plugin\StyleTestBase.
 */
namespace Drupal\views\Tests\Plugin;

use Drupal\views\Tests\ViewKernelTestBase;
use Masterminds\HTML5;

/**
 * Tests some general style plugin related functionality.
 */
abstract class StyleTestBase extends ViewKernelTestBase {

  /**
   * Stores the SimpleXML representation of the output.
   *
   * @var \SimpleXMLElement
   */
  protected $elements;

  /**
   * Stores a view output in the elements.
   */
  function storeViewPreview($output) {
    $html5 = new HTML5();
    $htmlDom = $html5
      ->loadHTML('<html><body>' . $output . '</body></html>');
    if ($htmlDom) {

      // It's much easier to work with simplexml than DOM, luckily enough
      // we can just simply import our DOM tree.
      $this->elements = simplexml_import_dom($htmlDom);
    }
  }

}

Classes

Namesort descending Description
StyleTestBase Tests some general style plugin related functionality.