| 1 | <?php |
||
| 14 | abstract class AbstractFinalPrinter extends AbstractPrinter |
||
| 15 | { |
||
| 16 | /** @var TestResultList */ |
||
| 17 | protected $testResultList; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * AbstractFinalPrinter constructor. |
||
| 21 | * @param TestResultList $testResultList |
||
| 22 | * @param OutputInterface $output |
||
| 23 | */ |
||
| 24 | 28 | public function __construct(TestResultList $testResultList, OutputInterface $output) |
|
| 25 | { |
||
| 26 | 28 | parent::__construct($output); |
|
| 27 | 28 | $this->testResultList = $testResultList; |
|
| 28 | } |
||
| 29 | |||
| 30 | abstract public function onEngineEnd(); |
||
| 31 | } |
||
| 32 |