Package com.google.gxp.compiler.reparent

Examples of com.google.gxp.compiler.reparent.MissingAttributesError


    assertNoUnexpectedAlerts();
  }

  public void testImport_neitherClassOrPackage() throws Exception {
    compile("<gxp:import/>");
    assertAlert(new MissingAttributesError(pos(2,1), "<gxp:import>",
                                           "class", "package"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here


        "var", "<gxp:loop var='", "' type='int' iterable='list'>content</gxp:loop>");
  }

  public void testLoop_missingIteratorAndIterable() throws Exception {
    compile("<gxp:loop var='x' type='int' />");
    assertAlert(new MissingAttributesError(pos(2,1), "<gxp:loop>", "iterator", "iterable"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

    assertNoUnexpectedAlerts();
  }

  public void testImport_neitherClassOrPackage() throws Exception {
    compile("<gxp:import/>");
    assertAlert(new MissingAttributesError(pos(2,1), "<gxp:import>",
                                           "class", "package"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

TOP

Related Classes of com.google.gxp.compiler.reparent.MissingAttributesError

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.