/**
  * @param string $givenFrontendInput
  * @param string $expectedDefaultValue
  * @dataProvider dataGetDefaultValueByInput
  */
 public function testGetDefaultValueByInput($givenFrontendInput, $expectedDefaultValue)
 {
     $this->assertEquals($expectedDefaultValue, $this->_model->getDefaultValueByInput($givenFrontendInput));
 }