| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class AssociationOverrideTest extends TestCase |
||
| 11 | { |
||
| 12 | public function test_annotation_can_be_loaded() |
||
| 13 | { |
||
| 14 | $newOverride = new NewAssociationOverride(); |
||
| 15 | |||
| 16 | self::assertInstanceOf(NewAssociationOverride::class, $newOverride); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function test_deprecated_annotation_can_be_loaded() |
||
| 26 | } |
||
| 27 | } |
||
| 28 |