/** * @covers Application\Entity\BusStop::getLongitude */ public function testGetLongitude() { $value = '5.654789'; $this->assertNull($this->object->getLongitude()); $this->object->setLongitude($value); $this->assertEquals($value, $this->object->getLongitude()); }