Add unit case for thirdparty sdnc bean.
[aai/esr-server.git] / esr-mgr / src / test / java / org / onap / aai / esr / entity / aai / EsrThirdpartySdncDetailTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.aai;
17
18 import static org.junit.Assert.assertEquals;
19
20 import java.util.ArrayList;
21
22 import org.junit.Test;
23
24 public class EsrThirdpartySdncDetailTest {
25   @Test
26   public void getterAndSetter4thirdpartySdncId(){
27       final String thirdpartySdncId = "thirdpartySdncId-test";
28       EsrThirdpartySdncDetail esrThirdpartySdncDetail = new EsrThirdpartySdncDetail();
29       esrThirdpartySdncDetail.setThirdpartySdncId(thirdpartySdncId);
30       assertEquals(esrThirdpartySdncDetail.getThirdpartySdncId(), thirdpartySdncId);
31   }
32   
33   @Test
34   public void getterAndSetter4resourceVersion(){
35       final String resourceVersion = "resourceVersion-test";
36       EsrThirdpartySdncDetail esrThirdpartySdncDetail = new EsrThirdpartySdncDetail();
37       esrThirdpartySdncDetail.setResourceVersion(resourceVersion);
38       assertEquals(esrThirdpartySdncDetail.getResourceVersion(), resourceVersion);
39   }
40   
41   @Test
42   public void getterAndSetter4location(){
43       final String location = "location-test";
44       EsrThirdpartySdncDetail esrThirdpartySdncDetail = new EsrThirdpartySdncDetail();
45       esrThirdpartySdncDetail.setLocation(location);
46       assertEquals(esrThirdpartySdncDetail.getLocation(), location);
47   }
48   
49   @Test
50   public void getterAndSetter4productName(){
51       final String productName = "productName-test";
52       EsrThirdpartySdncDetail esrThirdpartySdncDetail = new EsrThirdpartySdncDetail();
53       esrThirdpartySdncDetail.setProductName(productName);
54       assertEquals(esrThirdpartySdncDetail.getProductName(), productName);
55   }
56   
57   @Test
58   public void getterAndSetter4esrSystemInfoList(){
59     final EsrSystemInfoList esrSystemInfoList = new EsrSystemInfoList();
60     ArrayList<EsrSystemInfo> esrSystemInfo = new ArrayList<EsrSystemInfo>();
61     EsrSystemInfo esrSystemInfoObj = new EsrSystemInfo();
62     esrSystemInfoObj.setEsrSystemInfoId("123");
63     esrSystemInfo.add(esrSystemInfoObj );
64     esrSystemInfoList.setEsrSystemInfo(esrSystemInfo);
65     EsrThirdpartySdncDetail esrThirdpartySdncDetail = new EsrThirdpartySdncDetail();
66     esrThirdpartySdncDetail.setEsrSystemInfoList(esrSystemInfoList);
67     assertEquals(esrThirdpartySdncDetail.getEsrSystemInfoList(), esrSystemInfoList);
68   }
69 }