/**
  * Test that attempting to set the evening property with a non numeric
  * value results in an exception being thrown
  *
  * @expectedException InvalidArgumentException
  * @covers \OpenWeatherMap\Entity\Temperature::setEvening
  */
 public function testSetEveningWithNonNumericStringThrowsException()
 {
     $temperature = new Temperature();
     $temperature->setEvening('abcdef');
 }