Examples of ClassTemplateLoader


Examples of net.sf.lapg.templates.api.impl.ClassTemplateLoader

  // switch.ltp
  public void testSwitch() {
    final Map<String,Object> this_ = new HashMap<String,Object>();
    this_.put("aa", new Integer(11));
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
    EvaluationContext context = new EvaluationContext(this_);

    // test 1
    String q = env.executeTemplate("switch.check1", context, null, null);
    Assert.assertEquals("Yo", q);
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.