/**
  * @depends testSetAclSetsProperty
  */
 public function testGetAclReturnsPropertyValue()
 {
     $acl = $this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\AclInterface');
     $this->objectData->setAcl($acl);
     $this->assertSame($acl, $this->objectData->getAcl());
 }