| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function testCreation() |
||
| 18 | { |
||
| 19 | $exception = new ParseException('message string'); |
||
| 20 | self::assertInstanceOf('Ktomk\Pipelines\File\ParseException', $exception); |
||
| 21 | self::assertInstanceOf('InvalidArgumentException', $exception); |
||
| 22 | self::assertInstanceOf('Exception', $exception); |
||
| 23 | |||
| 24 | return $exception; |
||
| 25 | } |
||
| 46 |