Fix bugs and formatting issues
[dcaegen2/services/son-handler.git] / src / test / java / org / onap / dcaegen2 / services / sonhms / FaultFieldsTest.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  son-handler
4  *  ================================================================================
5  *   Copyright (C) 2019 Wipro Limited.
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
22 package org.onap.dcaegen2.services.sonhms;
23
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Test;;
27
28 public class FaultFieldsTest {
29
30     FaultFields faultFields=new FaultFields();
31     @Test
32     public void faultFieldsTest() {
33         faultFields.setAlarmCondition("alarmCondition");
34         AlarmAdditionalInformation alarmAdditionalInformation = new AlarmAdditionalInformation();
35         alarmAdditionalInformation.setCollisions(1);
36         alarmAdditionalInformation.setConfusions(3);
37         alarmAdditionalInformation.setNetworkId("networkId");
38
39         faultFields.setEventSeverity("eventSeverity");
40         faultFields.setEventSourceType("eventSourceType");
41         faultFields.setFaultFieldsVersion(4.0);
42         faultFields.setAlarmAdditionalInformation(alarmAdditionalInformation);
43
44         faultFields.setSpecificProblem("specificProblem");
45         faultFields.setVfStatus("vfStatus");
46         assertEquals("alarmCondition", faultFields.getAlarmCondition());
47         assertEquals(1, faultFields.getAlarmAdditionalInformation().getCollisions());
48         assertEquals(3, faultFields.getAlarmAdditionalInformation().getConfusions());
49         assertEquals(4.0, faultFields.getFaultFieldsVersion(), 0);
50         assertEquals("eventSeverity", faultFields.getEventSeverity());
51         assertEquals("eventSourceType", faultFields.getEventSourceType());
52         assertEquals("networkId", faultFields.getAlarmAdditionalInformation().getNetworkId());
53         assertEquals("specificProblem", faultFields.getSpecificProblem());
54         assertEquals("vfStatus", faultFields.getVfStatus());
55         
56     }
57     
58 }