/**
  * Test that attempting the set the min property with a non scalar
  * value results in an exception being thrown
  *
  * @expectedException InvalidArgumentException
  * @covers \OpenWeatherMap\Entity\Temperature::setMin
  */
 public function testSetMinWithNonScalarThrowsException()
 {
     $temperature = new Temperature();
     $temperature->setMin(new \stdClass());
 }