01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2006 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA 02111-1307
20: * USA
21: *
22: *
23: *
24: */
25: package com.bostechcorp.cbesb.common.util;
26:
27: import junit.framework.TestCase;
28:
29: import com.bostechcorp.cbesb.common.util.xfm.IXmlFormatModel;
30: import com.bostechcorp.cbesb.common.util.xfm.XmlFormatModelFactory;
31: import com.bostechcorp.cbesb.common.util.xfm.XmlFormatModelNode;
32:
33: public class XmlFormatModelTest extends TestCase {
34:
35: public void testXmlFormatModel() throws Exception {
36: IXmlFormatModel m0 = XmlFormatModelFactory
37: .newInstance("target/test-data/config/CWInvoices.xsd");
38: System.out.println(m0.getRootElement("Message").toString());
39: IXmlFormatModel m = XmlFormatModelFactory
40: .newInstance("target/test-data/config/o4oputl0.xsd");
41: XmlFormatModelNode rootElement = m.getRootElement("o4oputl0");
42:
43: System.out.println("o4oput10 root: " + rootElement.toString());
44: XmlFormatModelNode fn2 = rootElement.getNode("row");
45: System.out.println("row :" + fn2.toString());
46:
47: }
48:
49: }
|