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));
}