Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function testInvalidEvent(): void |
||
45 | { |
||
46 | $this->expectException(Exception::class); |
||
47 | |||
48 | $io = $this->createIOMock(); |
||
49 | $config = $this->createConfigMock(); |
||
50 | $repo = $this->createRepositoryMock(); |
||
51 | |||
52 | $factory = new Factory($io, $config, $repo); |
||
53 | $event = $factory->createEvent('invalidEventName'); |
||
|
|||
54 | } |
||
56 |