/**
  * @depends testSetPropertiesSetsProperty
  */
 public function testGetPropertiesReturnsPropertyValue()
 {
     $properties = $this->getMockForAbstractClass('\\Dkd\\PhpCmis\\Data\\PropertiesInterface');
     $this->objectData->setProperties($properties);
     $this->assertSame($properties, $this->objectData->getProperties());
 }