| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class CalendarEventSpec extends ObjectBehavior |
||
| 10 | { |
||
| 11 | private $start; |
||
| 12 | private $end; |
||
| 13 | private $filters; |
||
| 14 | |||
| 15 | public function let() |
||
| 23 | } |
||
| 24 | |||
| 25 | public function it_is_initializable() |
||
| 26 | { |
||
| 27 | $this->shouldHaveType(CalendarEvent::class); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function it_has_require_values() |
||
| 31 | { |
||
| 32 | $this->getStart()->shouldReturn($this->start); |
||
|
|
|||
| 33 | $this->getEnd()->shouldReturn($this->end); |
||
| 34 | $this->getFilters()->shouldReturn($this->filters); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function it_handle_events( |
||
| 42 | } |
||
| 43 | } |
||
| 44 |