Bulk-add copyright headers to java files
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / iml / varioustests / VariousTest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.restconf.iml.varioustests;
9
10 import org.junit.Ignore;
11 import org.junit.Test;
12 import org.opendaylight.controller.sal.rest.impl.XmlToCompositeNodeProvider;
13 import org.opendaylight.controller.sal.restconf.impl.test.TestUtils;
14 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
15 import org.w3c.dom.Document;
16
17
18 public class VariousTest {
19
20     @Ignore
21     @Test
22     public void test() {
23         String[] split = "/something:dfsa/s:sda".split("/");
24         System.out.println(split.length);
25         for (String str : split) {
26             System.out.println(">"+str+"<");    
27         }        
28         
29     }
30     
31     @Test
32     public void loadXml() {
33         TestUtils.readInputToCnSn("/varioustest/xmldata.xml", XmlToCompositeNodeProvider.INSTANCE);
34 //        TestUtils.normalizeCompositeNode(compositeNode, modules, schemaNodePath)
35     }
36     
37     @Test
38     public void buildXml() {
39 //        Document doc;
40 //        doc.createElementNS(namespaceURI, qualifiedName)
41     }
42     
43
44 }