/**
  * @depends testSetObjectSetsProperty
  */
 public function testGetObjectReturnsPropertyValue()
 {
     $objectData = $this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\ObjectDataInterface');
     $this->objectParentData->setObject($objectData);
     $this->assertSame($objectData, $this->objectParentData->getObject());
 }