Update versions for odl sr3
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / test / java / org / onap / appc / dg / common / utils / JAXBUtilTest.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 AT&T
6 *=================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20 package org.onap.appc.dg.common.utils;
21
22 import static org.junit.Assert.assertEquals;
23
24 import org.junit.Before;
25 import org.junit.Test;
26
27
28
29 import javax.xml.bind.JAXBException;
30
31 public class JAXBUtilTest {
32
33     @Before
34     public void setUp() {
35     }
36
37     @Test
38     public void testToObjectFail() {
39       String xmlStr = "<?xml version=\\\"1.0\\\"?><vnfId>I1</vnfId><vnfType>T1</vnfType>";
40       JSONUtilVnfTest jOut = null;
41         try {
42             jOut = JAXBUtil.toObject(xmlStr, JSONUtilVnfTest.class);
43         } catch (JAXBException jaxbe) {
44             assertEquals(jOut, null);
45         }
46     }
47
48 }