/**
  * @depends testSetChangeEventInfoSetsProperty
  */
 public function testGetChangeEventInfoReturnsPropertyValue()
 {
     $changeEventInfo = $this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\ChangeEventInfoInterface');
     $this->objectData->setChangeEventInfo($changeEventInfo);
     $this->assertSame($changeEventInfo, $this->objectData->getChangeEventInfo());
 }