Package com.google.gxp.compiler.servicedir

Examples of com.google.gxp.compiler.servicedir.AmbiguousImportError


  }

  public void testImport_ambiguousImports() throws Exception {
    compile("<gxp:import class='com.google.foo.Baz'/>",
            "<gxp:import class='com.google.bar.Baz'/>");
    assertAlert(new AmbiguousImportError(pos(3,1), "Baz", "com.google.foo.Baz",
                                         "com.google.bar.Baz"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here


  }

  public void testImport_ambiguousImports() throws Exception {
    compile("<gxp:import class='com.google.foo.Baz'/>",
            "<gxp:import class='com.google.bar.Baz'/>");
    assertAlert(new AmbiguousImportError(pos(3,1), "Baz", "com.google.foo.Baz",
                                         "com.google.bar.Baz"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

TOP

Related Classes of com.google.gxp.compiler.servicedir.AmbiguousImportError

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.