added file to test DmaapOutgoingMessage.java
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / test / java / org / onap / appc / requesthandler / impl / DmaapOutgoingMessageTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2019 IBM.
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  * 
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.appc.requesthandler.impl;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class DmaapOutgoingMessageTest {
31
32     private DmaapOutgoingMessage dmaapOutgoingMessage;
33
34     @Before
35     public void setUp() {
36         dmaapOutgoingMessage = new DmaapOutgoingMessage();
37     }
38
39     @Test
40     public void testVersion() {
41         dmaapOutgoingMessage.setVersion("version");
42         assertEquals("version", dmaapOutgoingMessage.getVersion());
43     }
44
45     @Test
46     public void testCambriaPartition() {
47         dmaapOutgoingMessage.setCambriaPartition("CambriaPartition");
48         assertEquals("CambriaPartition", dmaapOutgoingMessage.getCambriaPartition());
49     }
50
51     @Test
52     public void testToString() {
53         dmaapOutgoingMessage.setVersion("version");
54         dmaapOutgoingMessage.setCambriaPartition("CambriaPartition");
55         dmaapOutgoingMessage.setRpcName("rpcName");
56         String expected = "DmaapOutgoingMessage{cambriaPartition='CambriaPartition', rpcName='rpcName', body=null}";
57         assertEquals(expected, dmaapOutgoingMessage.toString());
58     }
59
60 }