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