/**
  * @depends testSetAllowedSourceTypeIdsSetsProperty
  */
 public function testGetAllowedSourceTypeIdsGetsProperty()
 {
     $this->relationshipTypeDefinition->setAllowedSourceTypeIds(array('foo'));
     $this->assertSame(array('foo'), $this->relationshipTypeDefinition->getAllowedSourceTypeIds());
 }