Added junit test file for ResponseTest.java 70/75570/5
authorezhil <ezhrajam@in.ibm.com>
Wed, 9 Jan 2019 16:34:04 +0000 (22:04 +0530)
committerTakamune Cho <takamune.cho@att.com>
Thu, 17 Jan 2019 13:47:57 +0000 (13:47 +0000)
Change-Id: I89a6669bb6ce209e0f01b616530b87ee2048f3f3
Issue-ID: APPC-1316
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ResponseTest.java [new file with mode: 0644]

diff --git a/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ResponseTest.java b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ResponseTest.java
new file mode 100644 (file)
index 0000000..013f384
--- /dev/null
@@ -0,0 +1,61 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2019 IBM.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.appc.seqgen.objects;
+
+import org.junit.Test;
+import org.junit.Before;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import java.util.Map;
+import java.util.HashMap;
+
+public class ResponseTest {
+
+    private Response response;
+
+    @Before
+    public void setUp() {
+        response = new Response();
+    }
+  
+    @Test
+    public void get_set_ResponseCode() {
+        String responseCode = "response_code";
+        response.setResponseCode(responseCode);
+        assertEquals(responseCode, response.getResponseCode());
+    }
+
+    @Test
+    public void get_set_ResponseMessage() {
+        String responseMessage = "response_message";
+        response.setResponseMessage(responseMessage);
+        assertEquals(responseMessage, response.getResponseMessage());
+    }
+
+    @Test
+    public void get_set_ResponseAction() {
+        Map<String, String> responseAction = new HashMap<String, String>();
+        responseAction.put("hello", "world");
+        response.setResponseAction(responseAction);
+        assertEquals(responseAction, response.getResponseAction());
+    }
+
+}