Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | public function testExecute() |
||
28 | { |
||
29 | $this->supervisor->expects(self::once())->method('run'); |
||
30 | $this->supervisor->expects(self::once())->method('reloadAndUpdate'); |
||
31 | |||
32 | $service = new RabbitMqSupervisor( |
||
33 | $this->supervisor, |
||
34 | $this->templating, |
||
35 | [], |
||
36 | [] |
||
37 | ); |
||
38 | |||
39 | $service->start(); |
||
40 | } |
||
41 | } |
||
42 |