| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testException() |
||
| 11 | { |
||
| 12 | $type = new Type([]); |
||
| 13 | $this->expectException(RuntimeException::class); |
||
| 14 | $this->expectExceptionMessage('Empty class for @Type annotation. You MUST create the Type annotation object using the GraphQL-Controllers AnnotationReader'); |
||
| 15 | $type->getClass(); |
||
| 16 | } |
||
| 18 |