aboutsummaryrefslogtreecommitdiffstats
path: root/appc-sequence-generator
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2019-01-09 22:04:04 +0530
committerTakamune Cho <takamune.cho@att.com>2019-01-17 13:47:57 +0000
commit3be4c991bc7d18e3d0bcf4b8524f5b93934242a8 (patch)
tree6bb19562ed274eb3533f596bca7e438b244baff7 /appc-sequence-generator
parent5e9312948808342be8f631df95e26d7462806542 (diff)
Added junit test file for ResponseTest.java
Change-Id: I89a6669bb6ce209e0f01b616530b87ee2048f3f3 Issue-ID: APPC-1316 Signed-off-by: ezhil <ezhrajam@in.ibm.com>
Diffstat (limited to 'appc-sequence-generator')
-rw-r--r--appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ResponseTest.java61
1 files changed, 61 insertions, 0 deletions
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
index 000000000..013f384a4
--- /dev/null
+++ b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ResponseTest.java
@@ -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());
+ }
+
+}