for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Valkyrja Framework package.
*
* (c) Melech Mizrachi <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Valkyrja\Test\Output\Outputters;
use Valkyrja\Test\Output\Results;
/**
* Class Output.
* @author Melech Mizrachi
class EchoOutput extends Output
{
* @inheritDoc
public function title(): void
echo $this->formatter->title();
}
public function meta(): void
echo $this->formatter->meta();
public function tests(Results $results): void
echo $this->formatter->tests($results);
public function completed(Results $results): void
echo $this->formatter->completed($results);
public function results(Results $results): void
echo $this->formatter->results($results);
public function issues(Results $results): void
echo $this->formatter->issues($results);
public function sectionSpacing(): void
echo $this->formatter->sectionSpacing();