2c67dfd00995d7b489e1c090a28f831bf9fa2057
[so.git] / adapters / mso-adapter-utils / src / test / java / org / onap / so / openstack / utils / MsoHeatEnvironmentResourceTest.java
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.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertFalse;
20 import static org.junit.Assert.assertTrue;
21 import org.junit.Test;
22
23 public class MsoHeatEnvironmentResourceTest {
24     @Test
25     public void test() {
26         Object op = true;
27
28         MsoHeatEnvironmentResource mre = new MsoHeatEnvironmentResource("name");
29         MsoHeatEnvironmentResource mae = new MsoHeatEnvironmentResource("name", "maeValue");
30         MsoHeatEnvironmentResource msoHER = new MsoHeatEnvironmentResource();
31
32         msoHER.setName("msoHERName");
33         msoHER.setValue("msoHERValue");
34
35         assertEquals("name", mre.getName());
36         assertEquals("maeValue", mae.getValue());
37         assertEquals("\"msoHERName\": msoHERValue", msoHER.toString());
38         assertEquals("\"name\": maeValue", mae.toString());
39         assertFalse(mae.equals(op));
40         assertTrue(mae.equals(mre));
41         assertEquals("name".hashCode(), mae.hashCode());
42     }
43 }