Examples of AmbiguousImportError


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

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
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.