Examples of XmlNavigationFactory


Examples of net.sf.lapg.templates.model.xml.XmlNavigationFactory

public class XmlTest extends TemplateTestCase{

  public void testSelector() {
    XmlNode n = XmlModel.load(" <r><user name='jone'/>go<user name='go'/></r> ");

    TestTemplatesFacade env = new TestTemplatesFacade(new XmlNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), "net/sf/lapg/templates/test/ltp", "utf8"));

    // test 1
    String q = env.executeTemplate("xmltest.xmldo", new EvaluationContext(n), null, null);
    Assert.assertEquals("jone\ngo\n", q);
    env.assertEmptyErrors();
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.