dba9bfa2db722a57781f02af1b9c654c505255b5
[dcaegen2/services/mapper.git] /
1 /*\r
2  * ============LICENSE_START======================================================= ONAP : DCAE\r
3  * ================================================================================ Copyright 2018\r
4  * TechMahindra =================================================================================\r
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except\r
6  * in compliance with the License. You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software distributed under the License\r
11  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\r
12  * or implied. See the License for the specific language governing permissions and limitations under\r
13  * the License. ============LICENSE_END=========================================================\r
14  */\r
15 \r
16 package org.onap.dcaegen2.ves.domain.ves7_0;\r
17 \r
18 import java.util.Map;\r
19 import org.junit.Test;\r
20 \r
21 \r
22 public class AlarmAdditionalInformationTest {\r
23 \r
24   private AlarmAdditionalInformation createTestSubject() {\r
25     return new AlarmAdditionalInformation();\r
26   }\r
27 \r
28   @Test\r
29   public void testToString() throws Exception {\r
30     AlarmAdditionalInformation testSubject;\r
31     String result;\r
32 \r
33     // default test\r
34     testSubject = createTestSubject();\r
35     result = testSubject.toString();\r
36   }\r
37 \r
38   @Test\r
39   public void testGetAdditionalProperties() throws Exception {\r
40     AlarmAdditionalInformation testSubject;\r
41     Map<String, String> result;\r
42 \r
43     // default test\r
44     testSubject = createTestSubject();\r
45     result = testSubject.getAdditionalProperties();\r
46   }\r
47 \r
48   @Test\r
49   public void testSetAdditionalProperty() throws Exception {\r
50     AlarmAdditionalInformation testSubject;\r
51     String name = "";\r
52     String value = "";\r
53 \r
54     // default test\r
55     testSubject = createTestSubject();\r
56     testSubject.setAdditionalProperty(name, value);\r
57   }\r
58 \r
59   @Test\r
60   public void testHashCode() throws Exception {\r
61     AlarmAdditionalInformation testSubject;\r
62     int result;\r
63 \r
64     // default test\r
65     testSubject = createTestSubject();\r
66     result = testSubject.hashCode();\r
67   }\r
68 \r
69   @Test\r
70   public void testEquals() throws Exception {\r
71     AlarmAdditionalInformation testSubject;\r
72     AlarmAdditionalInformation testSubject2;\r
73     Object other = null;\r
74     boolean result;\r
75 \r
76     // default test\r
77     testSubject = createTestSubject();\r
78     testSubject2 = createTestSubject();\r
79     result = testSubject.equals(other);\r
80     result = testSubject.equals(testSubject);\r
81     result = testSubject.equals(testSubject2);\r
82   }\r
83 }\r