You are here

ScaffoldTestResult.php in Drupal 8

File

core/tests/Drupal/Tests/Composer/Plugin/Scaffold/ScaffoldTestResult.php
View source
<?php

namespace Drupal\Tests\Composer\Plugin\Scaffold;


/**
 * Holds result of a scaffold test.
 */
class ScaffoldTestResult {
  protected $docroot;
  protected $scaffoldOutput;

  /**
   * Holds the location of the scaffold fixture and the stdout from the test.
   *
   * @param string $docroot
   * @param string $scaffoldOutput
   */
  public function __construct($docroot, $scaffoldOutput) {
    $this->docroot = $docroot;
    $this->scaffoldOutput = $scaffoldOutput;
  }

  /**
   * Returns the location of the docroot from the scaffold test.
   *
   * @return string
   */
  public function docroot() {
    return $this->docroot;
  }

  /**
   * Returns the standard output from the scaffold test.
   *
   * @return string
   */
  public function scaffoldOutput() {
    return $this->scaffoldOutput;
  }

}

Classes

Namesort descending Description
ScaffoldTestResult Holds result of a scaffold test.