/**
  * Test if longitude can be set
  *
  * @test
  * @return void
  */
 public function setLongitudeSetsLongitude()
 {
     $this->subject->setLongitude(12.345678);
     $this->assertSame(12.345678, $this->subject->getLongitude());
 }