Esempio n. 1
0
 /**
  * @covers Application\Entity\BusStop::getLatitude
  */
 public function testGetLatitude()
 {
     $value = '52.654789';
     $this->assertNull($this->object->getLatitude());
     $this->object->setLatitude($value);
     $this->assertEquals($value, $this->object->getLatitude());
 }