/**
  * @depends testAddPropertyDefinitionAddsPropertyDefinitionWithPropertyDefinitionIdAsArrayIndex
  * @param AbstractTypeDefinition $abstractTypeDefinition
  */
 public function testGetPropertyDefinitionReturnsPropertyDefinitionForGivenId($abstractTypeDefinition)
 {
     $expected = $this->getMockBuilder('\\Dkd\\PhpCmis\\Definitions\\PropertyDefinitionInterface')->setMethods(array('getId'))->getMockForAbstractClass();
     $this->assertEquals($expected, $abstractTypeDefinition->getPropertyDefinition('fooId'));
 }