Package org.apache.ctakes.jdl.data.xml.jaxb

Examples of org.apache.ctakes.jdl.data.xml.jaxb.ObjectFactoryBind


  public static String L2X = Resources.LOAD1X;

  @Theory
  public void unmarshalSrcXml(String xml) throws JAXBException {
    xml = FileUtil.getFile(xml).toString();
    Object obj = new ObjectFactoryBind().unmarshalSrcXml(xml);
    assertThat(obj, instanceOf(JAXBElement.class));
  }
View Full Code Here


    assertThat(obj, instanceOf(JAXBElement.class));
  }

  @Test(expected = UnmarshalException.class)
  public void unmarshalStrXml() throws JAXBException {
    new ObjectFactoryBind().unmarshalStrXml("<root />");
  }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.jdl.data.xml.jaxb.ObjectFactoryBind

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.