/**
  * @depends testSetRelationshipsSetsProperty
  */
 public function testGetRelationshipsReturnsPropertyValue()
 {
     $relationships = array($this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\ObjectDataInterface'));
     $this->objectData->setRelationships($relationships);
     $this->assertSame($relationships, $this->objectData->getRelationships());
 }