Unit test Coverage
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-api / src / test / java / org / onap / appc / adapter / message / event / TestEventStatus.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 package org.onap.appc.adapter.message.event;
21
22 import static org.junit.Assert.*;
23
24 import org.junit.Before;
25 import org.junit.Test;
26
27 public class TestEventStatus {
28     private EventStatus eventStatus;
29
30     @Before
31     public void setUp1() {
32         eventStatus = new EventStatus(200, "Success");
33     }
34
35     @Test
36     public void testGetCode() {
37         assertNotNull(eventStatus.getCode());
38         assertEquals(eventStatus.getCode(),(Integer)200);
39     }
40
41     @Test
42     public void testGetReason() {
43         assertNotNull(eventStatus.getReason());
44         assertNotEquals(eventStatus.getReason(), "");
45         assertEquals(eventStatus.getReason(), "Success");
46     }
47     @Test
48     public void testToString_ReturnNonEmptyString() {
49         assertNotEquals(eventStatus.toString(), "");
50         assertNotEquals(eventStatus.toString(), null);
51     }
52
53     @Test
54     public void testToString_ContainsString() {
55         assertTrue(eventStatus.toString().contains("reason"));
56     }
57
58 }