Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function setUp(): void |
||
20 | { |
||
21 | $this->start = new \DateTime('2019-03-18 08:41:31'); |
||
22 | $this->end = new \DateTime('2019-03-18 08:41:31'); |
||
23 | $this->filters = []; |
||
24 | |||
25 | $this->eventEntity = $this->createMock(Event::class); |
||
26 | |||
27 | $this->event = new CalendarEvent( |
||
28 | $this->start, |
||
29 | $this->end, |
||
30 | $this->filters |
||
31 | ); |
||
47 |