| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | |||
| 10 | class ProviderTest extends TestSuite |
||
| 11 | { |
||
| 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)); |
||
| 20 |