* TODO: Create language/tag/function scope tests for each language version
*/
@Test
public void testGetTag() throws IOException, JDOMException {
Grammar g = new Grammar("railo3.xml");
Tag tag = g.getTag("cfabort");
assertEquals(tag.getName(), "cfabort");
assertTrue(tag.getHelp().length()>0);
assertTrue(tag.isSingle());
assertFalse(tag.isXMLStyle());
Tag tag1 = g.getTag("cfif");
assertFalse("CFFIF should allow any tag", tag1.isCanHaveAttributeCollection());
assertFalse("CFFIF needs a closing CFIF", tag1.isSingle());
}