for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace hanneskod\readmetester\Event;
use hanneskod\readmetester\Runner\OutcomeInterface;
final class EvaluationStarted extends EvaluationEvent
{
public function __construct(OutcomeInterface $outcome)
parent::__construct(
"Entered: {$outcome->getExample()->getName()->getFullName()}",
$outcome
);
}