/**
  * @depends testSetRenditionsSetsProperty
  */
 public function testGetRenditionsReturnsPropertyValue()
 {
     $renditions = array($this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\ObjectDataInterface'));
     $this->objectData->setRenditions($renditions);
     $this->assertSame($renditions, $this->objectData->getRenditions());
 }