for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Paraunit\TestResult;
/**
* Class TestResultContainer
* @package Paraunit\TestResult
*/
class TestResultFormat
{
/** @var string */
private $testResultSymbol;
private $tag;
private $title;
/** @var bool */
private $printTestOutput;
private $printFilesRecap;
* TestResultFormat constructor.
* @param string $testResultSymbol
* @param string $tag
* @param string $title
* @param bool $printTestOutput
* @param bool $printFilesRecap
public function __construct($testResultSymbol, $tag, $title, $printTestOutput = true, $printFilesRecap = true)
$this->testResultSymbol = $testResultSymbol;
$this->tag = $tag;
$this->title = $title;
$this->printTestOutput = $printTestOutput;
$this->printFilesRecap = $printFilesRecap;
}
* @return string
public function getTestResultSymbol()
return $this->testResultSymbol;
public function getTag()
return $this->tag;
public function getTitle()
return $this->title;
* @return boolean
public function shouldPrintTestOutput()
return $this->printTestOutput;
public function shouldPrintFilesRecap()
return $this->printFilesRecap;