Changes for Checkstyle 8.32
[policy/models.git] / models-interactions / model-impl / so / src / test / java / org / onap / policy / so / SoAsyncRequestStatusTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  *
6  * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved
7  * Modifications Copyright (C) 2019 Nordix Foundation.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.so;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertTrue;
27
28 import java.time.LocalDateTime;
29 import org.junit.Test;
30
31 public class SoAsyncRequestStatusTest {
32
33     @Test
34     public void testConstructor() {
35         SoAsyncRequestStatus obj = new SoAsyncRequestStatus();
36
37         assertTrue(obj.getCorrelator() == null);
38         assertTrue(obj.getFinishTime() == null);
39         assertTrue(obj.getInstanceReferences() == null);
40         assertTrue(obj.getRequestId() == null);
41         assertTrue(obj.getRequestScope() == null);
42         assertTrue(obj.getRequestStatus() == null);
43         assertTrue(obj.getStartTime() == null);
44     }
45
46     @Test
47     public void testSetGet() {
48         SoAsyncRequestStatus obj = new SoAsyncRequestStatus();
49
50         obj.setCorrelator("correlator");
51         assertEquals("correlator", obj.getCorrelator());
52
53         LocalDateTime finishTime = LocalDateTime.now();
54         obj.setFinishTime(finishTime);
55         assertEquals(finishTime, obj.getFinishTime());
56
57         SoInstanceReferences instanceReferences = new SoInstanceReferences();
58         obj.setInstanceReferences(instanceReferences);
59         assertEquals(instanceReferences, obj.getInstanceReferences());
60
61         obj.setRequestId("requestId");
62         assertEquals("requestId", obj.getRequestId());
63
64         obj.setRequestScope("requestScope");
65         assertEquals("requestScope", obj.getRequestScope());
66
67         SoRequestStatus requestStatus = new SoRequestStatus();
68         obj.setRequestStatus(requestStatus);
69         assertEquals(requestStatus, obj.getRequestStatus());
70
71         obj.setRequestType("requestType");
72         assertEquals("requestType", obj.getRequestType());
73
74         LocalDateTime startTime = LocalDateTime.now();
75         obj.setStartTime(startTime);
76         assertEquals(startTime, obj.getStartTime());
77
78     }
79 }