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
8 * http://www.apache.org/licenses/LICENSE-2.0
\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
16 package org.onap.dcaegen2.ves.domain.ves7_0;
\r
18 import java.util.Map;
\r
19 import org.junit.Test;
\r
22 public class AlarmAdditionalInformationTest {
\r
24 private AlarmAdditionalInformation createTestSubject() {
\r
25 return new AlarmAdditionalInformation();
\r
29 public void testToString() throws Exception {
\r
30 AlarmAdditionalInformation testSubject;
\r
34 testSubject = createTestSubject();
\r
35 result = testSubject.toString();
\r
39 public void testGetAdditionalProperties() throws Exception {
\r
40 AlarmAdditionalInformation testSubject;
\r
41 Map<String, String> result;
\r
44 testSubject = createTestSubject();
\r
45 result = testSubject.getAdditionalProperties();
\r
49 public void testSetAdditionalProperty() throws Exception {
\r
50 AlarmAdditionalInformation testSubject;
\r
55 testSubject = createTestSubject();
\r
56 testSubject.setAdditionalProperty(name, value);
\r
60 public void testHashCode() throws Exception {
\r
61 AlarmAdditionalInformation testSubject;
\r
65 testSubject = createTestSubject();
\r
66 result = testSubject.hashCode();
\r
70 public void testEquals() throws Exception {
\r
71 AlarmAdditionalInformation testSubject;
\r
72 AlarmAdditionalInformation testSubject2;
\r
73 Object other = null;
\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