/**
  * @dataProvider getFormConfigProvider
  */
 public function testGetFormConfig($type, $config, $expectedValues)
 {
     $this->configContainer->setConfig($config);
     $result = $this->configContainer->getFormConfig($type);
     $this->assertEquals($expectedValues, $result);
 }