Examples of UnsupportedExternalEntityError


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
Copyright © 2018 www.massapi.com. 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.