for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Paraunit\TestResult;
use Paraunit\TestResult\Interfaces\PrintableTestResultInterface;
/**
* Class MuteTestResult
* @package Paraunit\Output\MuteTestResult
*/
class MuteTestResult extends NullTestResult implements PrintableTestResultInterface
{
/** @var TestResultFormat */
private $testResultFormat;
* AbstractTestResult constructor.
public function __construct()
$this->testResultFormat = new TestResultFormat('null', '');
}
public function setTestResultFormat(TestResultFormat $testResultFormat)
$this->testResultFormat = $testResultFormat;
public function getTestResultFormat(): TestResultFormat
return $this->testResultFormat;