| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function testApplication() |
||
| 13 | { |
||
| 14 | $this->assertNotNull($this->app); |
||
| 15 | $this->assertInstanceOf(Application::class, $this->app); |
||
| 16 | $this->assertSame($this->app, $this->app->get(Application::class)); |
||
| 17 | |||
| 18 | $container = $this->app->get(Container::class); |
||
| 19 | $this->assertInstanceOf(Container::class, $container); |
||
| 20 | $this->assertSame($this->app, $container->get(Application::class)); |
||
| 21 | } |
||
| 22 | |||
| 34 |