app = new Application(); } /** * @group core */ public function testGetContainer() { $this->assertInstanceOf(ContainerBuilder::class, $this->app->getContainer()); } /** * @group core */ public function testGetValidService() { $this->assertInstanceOf(GitService::class, $this->app->getService('git')); } }