@Test
public void parameterAnnotations() throws Exception {
EdmParameter parameter = edmFunctionImport.getParameter("fooParameter1");
assertNotNull(parameter);
EdmAnnotatable annotatable = (EdmAnnotatable) parameter;
EdmAnnotations annotations = annotatable.getAnnotations();
assertNull(annotations.getAnnotationAttributes());
assertNull(annotations.getAnnotationElements());
}