dd67a5fddfcbcaa79250b14e68684b378627e8d8
[appc.git] / appc-dg / appc-dg-shared / appc-dg-domain-model-lib / src / test / java / org / onap / appc / domainmodel / TestVnfc.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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.domainmodel;
21
22 import static org.junit.Assert.*;
23
24 import java.util.LinkedList;
25 import java.util.List;
26
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class TestVnfc {
31     private Vnfc vnfc;
32
33     @Before
34     public void SetUp() {
35         vnfc=new Vnfc();
36     }
37
38     @Test
39     public void testGetVnfcType() {
40         vnfc.setVnfcType("1");
41         assertNotNull(vnfc.getVnfcType());
42         assertEquals(vnfc.getVnfcType(),"1");
43     }
44
45     @Test
46     public void testGetResilienceType() {
47         vnfc.setResilienceType("resilienceType");
48         assertNotNull(vnfc.getResilienceType());
49         assertEquals(vnfc.getResilienceType(),"resilienceType");
50     }
51
52     @Test
53     public void testGetVnfcName() {
54         vnfc.setVnfcName("vnfcName");
55         assertNotNull(vnfc.getVnfcName());
56         assertEquals(vnfc.getVnfcName(),"vnfcName");
57     }
58
59     @Test
60     public void testGetvserverList() {
61         List<Vserver> vserverList=new LinkedList<>();
62         vnfc.setVserverList(vserverList);
63         assertNotNull(vnfc.getVserverList());
64         assertEquals(vnfc.getVserverList(),vserverList);
65     }
66
67     @Test
68     public void testIsMandatory() {
69         vnfc.setMandatory(false);
70         assertNotNull(vnfc.isMandatory());
71         assertEquals(vnfc.isMandatory(),false);
72     }
73
74 }