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

Source Code of org.apache.ctakes.jdl.data.xml.DomParserTest

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ctakes.jdl.data.xml;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;

import org.apache.ctakes.jdl.common.FileUtil;
import org.apache.ctakes.jdl.data.xml.DomParser;
import org.apache.ctakes.jdl.test.Resources;
import org.junit.experimental.theories.DataPoint;
import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.runner.RunWith;

@RunWith(Theories.class)
public class DomParserTest {
  private static final String CX = FileUtil.getFile(Resources.CONN_X).toString();
  @DataPoint
  public static String L1C = Resources.LOAD1C;
  @DataPoint
  public static String L1X = Resources.LOAD1X;
  @DataPoint
  public static String L2C = Resources.LOAD2C;
  @DataPoint
  public static String L2X = Resources.LOAD2X;

  @Theory
  public void getRoot(String xml) {
    xml = FileUtil.getFile(xml).toString();
    DomParser dom;
    dom = new DomParser(CX);
    assertThat(dom.getRoot().getTagName(), is(Resources.ROOT_CONN));
    dom = new DomParser(xml);
    assertThat(dom.getRoot().getTagName(), is(Resources.ROOT_LOAD));
  }
}
TOP

Related Classes of org.apache.ctakes.jdl.data.xml.DomParserTest

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.