Example #1
0
 /**
  * @covers Application\Entity\BusStop::getParent
  */
 public function testGetParent()
 {
     $value = 'stoparea:HTM:1001';
     $this->assertNull($this->object->getParent());
     $this->object->setParent($value);
     $this->assertEquals($value, $this->object->getParent());
 }