/**
  * @depends testSetRelativePathSegmentSetsProperty
  */
 public function testGetRelativePathSegmentReturnsPropertyValue()
 {
     $this->objectParentData->setRelativePathSegment('foo');
     $this->assertEquals('foo', $this->objectParentData->getRelativePathSegment());
     $this->objectParentData->setRelativePathSegment('bar');
     $this->assertEquals('bar', $this->objectParentData->getRelativePathSegment());
 }