}
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();
}