de39df7b35bcba4ef0474a644e0717b27114f943
[so.git] /
1 /*
2  * ============LICENSE_START======================================================= ONAP : SO
3  * ================================================================================ Copyright (C) 2018 TechMahindra
4  * ================================================================================ Licensed under the Apache License,
5  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
6  * 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 distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.openstack.utils;
17
18 import static org.mockito.Mockito.mock;
19 import org.junit.Test;
20 import static org.junit.Assert.*;
21
22 public class MsoHeatEnvironmentParameterTest {
23
24     @Test
25     public void test() {
26         MsoHeatEnvironmentParameter hep = mock(MsoHeatEnvironmentParameter.class);
27         Object op = hep.getName();
28         MsoHeatEnvironmentParameter meo = new MsoHeatEnvironmentParameter();
29         MsoHeatEnvironmentParameter mea = new MsoHeatEnvironmentParameter("name");
30         MsoHeatEnvironmentParameter mep = new MsoHeatEnvironmentParameter("name", " value");
31         mea.setName("name");
32         mep.setValue("value");
33         assert (mea.getName().equals("name"));
34         assert (mep.getValue().equals("value"));
35         assert (meo.toString() != null);
36         // assertTrue(op.equals(hep));
37         meo.equals(op);
38         meo.hashCode();
39         assertNotNull(mea);
40     }
41
42 }