/**
  * @depends testSetAllowableActionsSetsProperty
  */
 public function testGetAllowableActionsReturnsPropertyValue()
 {
     $allowableActions = $this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\AllowableActionsInterface');
     $this->objectData->setAllowableActions($allowableActions);
     $this->assertSame($allowableActions, $this->objectData->getAllowableActions());
 }