1 | <?php |
||
11 | class EngineEvent extends AbstractEvent |
||
12 | { |
||
13 | // This Event will be triggered before the whole paraunit engine is started |
||
14 | const BEFORE_START = 'engine_event.before_start'; |
||
15 | |||
16 | // This Event will be triggered when paraunit finished building the process stack |
||
17 | const START = 'engine_event.start'; |
||
18 | |||
19 | // This Event will be triggered when paraunit finished all test execution |
||
20 | const END = 'engine_event.end'; |
||
21 | |||
22 | /** @var OutputInterface */ |
||
23 | protected $outputInterface; |
||
24 | |||
25 | /** |
||
26 | * @param OutputInterface $outputInterface |
||
27 | * @param array $context |
||
28 | */ |
||
29 | 16 | public function __construct(OutputInterface $outputInterface, $context = array()) |
|
34 | |||
35 | /** |
||
36 | * @return OutputInterface |
||
37 | */ |
||
38 | 16 | public function getOutputInterface() |
|
42 | } |
||
43 |