Merge "Reorder modifiers"
[so.git] / adapters / mso-adapter-utils / src / test / java / org / openecomp / mso / cloud / CloudSiteTest.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SO
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
21 package org.openecomp.mso.cloud;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.mockito.InjectMocks;
26 import org.mockito.Mock;
27 import org.mockito.MockitoAnnotations;
28
29 public class CloudSiteTest {
30
31     @Mock
32     CloudIdentity ci= new CloudIdentity();
33     
34     @InjectMocks
35     CloudSite cs = new CloudSite();
36
37     
38 @Before
39 public void init(){
40     MockitoAnnotations.initMocks(this);
41  }
42  @Test
43     public void testCloudSite() {
44         cs.setAic_version("aic_version");
45         cs.setClli("clli");
46         cs.setId("id");
47         cs.setIdentityService(ci);
48         cs.setRegionId("regionId");
49         assert(cs.getAic_version().equals("aic_version"));
50         assert(cs.getClli().equals("clli"));
51         assert(cs.getId().equals("id"));
52         assert(cs.getIdentityService().equals(ci));
53         assert(cs.getRegionId().equals("regionId"));
54     }
55   @Test
56     public void testtoStringmethod(){
57         assert(cs.toString()!=null);
58     }
59   @Test
60     public void testhashCodemethod(){
61         assert(cs.hashCode()!=0);
62     }
63     @Test
64     public void testclone(){
65         assert(cs.clone()!=null);
66     }
67 }