Package com.google.gxp.compiler.parser

Examples of com.google.gxp.compiler.parser.UnsupportedExternalEntityError


  }

  public void testParser_unsupportedExternalEntity() throws Exception {
    compileNoHeader(
        "<!DOCTYPE gxp:template SYSTEM \"http://www.corp.google.com/BAD\">");
    assertAlert(new UnsupportedExternalEntityError(
                    pos(1,1),
                    "PUBLIC <null> SYSTEM `http://www.corp.google.com/BAD`"));
    assertAlert(new NothingToCompileError(pos()));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

TOP

Related Classes of com.google.gxp.compiler.parser.UnsupportedExternalEntityError

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.