/**
  * Tests whether quoteParameterValue() works as expected.
  *
  * @dataProvider dataProviderTestQuoteParameterValue
  * @return void
  */
 public function testQuoteParameterValue($parameterValue, $expectedResult)
 {
     $this->assertSame($expectedResult, InternetMediaType::quoteParameterValue($parameterValue));
 }