Ejemplo n.º 1
0
 /**
  * @covers Application\Entity\BusStop::getWheelchair
  */
 public function testGetWheelchair()
 {
     $value = 1;
     $this->assertNull($this->object->getWheelchair());
     $this->object->setWheelchair($value);
     $this->assertEquals($value, $this->object->getWheelchair());
 }