@Test
  public void testGetCFScope() throws IOException, JDOMException {
    Grammar g = new Grammar("railo3.xml");
    //type="String" value="Server.ColdFusion.ProductName">
    CFScope cfscope= g.getCFScope("Client");
    assertEquals(cfscope.getName(), "Client");
    assertTrue(cfscope.getHelp().length()>0);
  }