Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | function it_can_be_thrown() |
||
27 | { |
||
28 | $this->beConstructedWith('Dummy-Check-Name', 'Dummy message'); |
||
29 | |||
30 | $this->shouldHaveType(CheckFailException::class); |
||
31 | $this->shouldHaveType(\Exception::class); |
||
32 | |||
33 | $this->getMessage()->shouldReturn('Check fails during the Dummy-Check-Name. Dummy message'); |
||
34 | } |
||
35 | } |
||
36 |