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