added test file for AaiVnfcInfo.java
[appc.git] / appc-outbound / appc-network-inventory-client / provider / src / test / java / org / onap / appc / aai / data / AaiVnfcInfoTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2019 IBM Intellectual Property. All rights reserved.
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  * 
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.appc.aai.data;
23
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Before;
27 import org.junit.Test;
28
29 public class AaiVnfcInfoTest {
30
31     private AaiVnfcInfo aaiVnfcInfo;
32     
33     @Before
34     public void setUp()
35     {
36         aaiVnfcInfo= new AaiVnfcInfo();
37     }
38     
39     @Test
40     public void testVnfcId()
41     {
42         aaiVnfcInfo.setVnfcId("VnfcId");
43         assertEquals("VnfcId", aaiVnfcInfo.getVnfcId());
44     }
45     
46     @Test
47     public void testVnfcName()
48     {
49         aaiVnfcInfo.setVnfcName("VnfcName");
50         assertEquals("VnfcName", aaiVnfcInfo.getVnfcName());
51     }
52     
53     @Test
54     public void testVnfcFunctionCode()
55     {
56         aaiVnfcInfo.setVnfcFunctionCode("VnfcFunctionCode");
57         assertEquals("VnfcFunctionCode", aaiVnfcInfo.getVnfcFunctionCode());
58     }
59     
60     @Test
61     public void testVnfcOamIpAddress()
62     {
63         aaiVnfcInfo.setVnfcOamIpAddress("VnfcOamIpAddress");
64         assertEquals("VnfcOamIpAddress", aaiVnfcInfo.getVnfcOamIpAddress());
65     }
66 }