| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 12 | public function test()  | 
            ||
| 13 |     { | 
            ||
| 14 | $container = $this->app->get(Container::class);  | 
            ||
| 15 | $this->assertTrue($container->has(BusinessLogic::class));  | 
            ||
| 16 | $this->assertSame($container->get(BusinessLogic::class), $container->get(BusinessLogic::class));  | 
            ||
| 17 | $this->assertSame($container->get(Client::class), $container->get(Client::class));  | 
            ||
| 18 | }  | 
            ||
| 19 | }  | 
            ||
| 20 |