/**
  * @dataProvider temperaturValueProvider
  */
 public function testTemperaturFormat($numberUserValue, $type, $linker, $expected)
 {
     $temperatureValue = new TemperatureValue('_num');
     $temperatureValue->setUserValue($numberUserValue);
     $temperatureValue->setOption('user.language', 'en');
     $temperatureValue->setOption('content.language', 'en');
     $instance = new NumberValueFormatter($temperatureValue);
     $this->assertEquals($expected, $instance->format($type, $linker));
 }