checkNullAnnotations(annotations);
}
@Test
public void nullAnnotationsAtAssociationSet() throws Exception {
Edm edm = createEdm();
assertNotNull(edm);
EdmEntitySet entitySet = edm.getDefaultEntityContainer().getEntitySet("Employees");
EdmAnnotations annotations =
edm.getDefaultEntityContainer().getAssociationSet(entitySet,
(EdmNavigationProperty) entitySet.getEntityType().getProperty("ne_Manager")).getAnnotations();
checkNullAnnotations(annotations);
}