Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function testCreateObjectFromInterface() |
||
28 | { |
||
29 | $service = app()->make(ObjectCreatorService::class); |
||
30 | $player = $service->createObjectFromInterface(PlayerInterface::class); |
||
31 | self::assertInstanceOf(PlayerInterface::class, $player); |
||
32 | } |
||
33 | //</editor-fold desc="Public Methods"> |
||
34 | } |