X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=netconf-server%2Fsrc%2Ftest%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Frpc%2FXmlUtilityTest.java;h=dae2f81f49d7c9299c71ce776f36387c61a6382b;hb=76744e810f35c84ecbd1d9998e361052466e9483;hp=91d420b0405732a8c72b884f4babc8b6202c8c42;hpb=ce4e2d38e3d42725f61c39dd172325d2def4bc44;p=oam%2Ftr069-adapter.git diff --git a/netconf-server/src/test/java/org/commscope/tr069adapter/netconf/rpc/XmlUtilityTest.java b/netconf-server/src/test/java/org/commscope/tr069adapter/netconf/rpc/XmlUtilityTest.java index 91d420b..dae2f81 100644 --- a/netconf-server/src/test/java/org/commscope/tr069adapter/netconf/rpc/XmlUtilityTest.java +++ b/netconf-server/src/test/java/org/commscope/tr069adapter/netconf/rpc/XmlUtilityTest.java @@ -1,55 +1,56 @@ -/* - * ============LICENSE_START======================================================================== - * ONAP : tr-069-adapter - * ================================================================================================= - * Copyright (C) 2020 CommScope Inc Intellectual Property. - * ================================================================================================= - * This tr-069-adapter software file is distributed by CommScope Inc 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 - * - * This file 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. - * ===============LICENSE_END======================================================================= - */ - -package org.commscope.tr069adapter.netconf.rpc; - -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; - -import org.junit.jupiter.api.Test; -import org.w3c.dom.Element; - -class XmlUtilityTest { - - @Test - void testConvertDocumentToStringXmlElement() { - - String xmlStr = - "1"; - try { - Element el = XmlUtility.convertStringToDocument(xmlStr); - String result = XmlUtility.convertDocumentToString(el); - assertTrue(result != null); - } catch (Exception e) { - fail("Failed to convert string into document."); - } - } - - @Test - void testConvertStringToDocument() { - String xmlStr = - ""; - try { - XmlUtility.convertStringToDocument(xmlStr); - } catch (Exception e) { - fail("Failed to convert string into document."); - } - assertTrue(true); - } - -} +/* + * ============LICENSE_START======================================================================== + * ONAP : tr-069-adapter + * ================================================================================================= + * Copyright (C) 2020 CommScope Inc Intellectual Property. + * ================================================================================================= + * This tr-069-adapter software file is distributed by CommScope Inc 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 + * + * This file 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. + * ===============LICENSE_END======================================================================= + */ + +package org.commscope.tr069adapter.netconf.rpc; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import org.junit.jupiter.api.Test; +import org.w3c.dom.Element; + +class XmlUtilityTest { + + @Test + void testConvertDocumentToStringXmlElement() { + + String xmlStr = + "1"; + try { + Element el = XmlUtility.convertStringToDocument(xmlStr); + String result = XmlUtility.convertDocumentToString(el); + assertNotNull(result); + } catch (Exception e) { + fail("Failed to convert string into document."); + } + } + + @Test + void testConvertStringToDocument() { + String xmlStr = + ""; + try { + XmlUtility.convertStringToDocument(xmlStr); + } catch (Exception e) { + fail("Failed to convert string into document."); + } + assertTrue(true); + } + +}