/**
  * Test getConfig returns the config.
  *
  * @dataProvider configProvider
  */
 public function testGetConfig(ConfigInterface $config)
 {
     $app = new Application();
     $app->setConfig($config);
     $this->assertSame($config, $app->getConfig());
 }