configProvider = new ConfigProvider(); } /** @test */ public function properConfigIsReturned(): void { $config = $this->configProvider->__invoke(); $this->assertArrayHasKey('routes', $config); $this->assertArrayHasKey('dependencies', $config); $this->assertArrayHasKey('templates', $config); $this->assertArrayHasKey('mezzio', $config); } }