Package org.cfeclipse.cfmledit.dictionary

Examples of org.cfeclipse.cfmledit.dictionary.Tag


   * 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());
   
   
  }
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfmledit.dictionary.Tag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.