Examples of XmlLoader


Examples of org.apache.ctakes.jdl.data.loader.XmlLoader

  }

  @Test
  public void getSqlInsert() throws JAXBException, FileNotFoundException {
    XmlLoadType loader;
    XmlLoader xmlLoader;
    loader = ObjectFactoryUtil.getLoadTypeBySrcXml(L1X).getXml();
    xmlLoader = new XmlLoader(loader, DomUtil.srcToDocument(D1X));
    assertThat(xmlLoader.getSqlInsert(loader), is(SQL));
    loader = ObjectFactoryUtil.getLoadTypeBySrcXml(L2X).getXml();
    xmlLoader = new XmlLoader(loader, DomUtil.srcToDocument(D2X));
    assertThat(xmlLoader.getSqlInsert(loader), is(SQL));
  }
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.