| 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-Tool-Name'); | ||
| 29 | |||
| 30 | $this->shouldHaveType(ToolUnavailableException::class); | ||
| 31 | $this->shouldHaveType(\Exception::class); | ||
| 32 | |||
| 33 |         $this->getMessage()->shouldReturn('Dummy-Tool-Name is unavailable so, you have to consider to install it'); | ||
| 34 | } | ||
| 35 | } | ||
| 36 |