}
@Test
public void testGetFunction() throws IOException, JDOMException {
Grammar g = new Grammar("railo3.xml");
Function function = g.getFunction("imageDrawRect");
assertEquals(function.getName(), "imageDrawRect");
assertEquals(function.getReturns(), "void");
assertTrue(function.getHelp().length()>0);
}