4dc4f0e312803c2e361d888c07b91de728bce883
[aai/esr-server.git] / esr-mgr / src / test / java / org / onap / aai / esr / entity / aai / EsrVnfmDetailTest.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 EsrVnfmDetailTest {
25   @Test
26   public void getterAndSetter4vnfmId(){
27       final String vnfmId = "vnfmId-test";
28       EsrVnfmDetail esrVnfm = new EsrVnfmDetail();
29       esrVnfm.setVnfmId(vnfmId);
30       assertEquals(esrVnfm.getVnfmId(), vnfmId);
31   }
32   
33   @Test
34   public void getterAndSetter4resourceVersion(){
35       final String resourceVersion = "resourceVersion-test";
36       EsrVnfmDetail esrVnfm = new EsrVnfmDetail();
37       esrVnfm.setResourceVersion(resourceVersion);
38       assertEquals(esrVnfm.getResourceVersion(), resourceVersion);
39   }
40   
41   @Test
42   public void getterAndSetter4vimId(){
43       final String vimId = "vimId-test";
44       EsrVnfmDetail esrVnfm = new EsrVnfmDetail();
45       esrVnfm.setVimId(vimId);
46       assertEquals(esrVnfm.getVimId(), vimId);
47   }
48   
49   @Test
50   public void getterAndSetter4certificateUrl(){
51       final String certificateUrl = "certificateUrl-test";
52       EsrVnfmDetail esrVnfm = new EsrVnfmDetail();
53       esrVnfm.setCertificateUrl(certificateUrl);
54       assertEquals(esrVnfm.getCertificateUrl(), certificateUrl);
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     EsrVnfmDetail esrVnfmDetail = new EsrVnfmDetail();
66     esrVnfmDetail.setEsrSystemInfoList(esrSystemInfoList);
67     assertEquals(esrVnfmDetail.getEsrSystemInfoList(), esrSystemInfoList);
68   }
69 }