added test case to TestResponseHandlerOutput.java 11/57911/2
authorSandeep J <sandeejh@in.ibm.com>
Fri, 27 Jul 2018 20:47:54 +0000 (02:17 +0530)
committerTakamune Cho <tc012c@att.com>
Sun, 29 Jul 2018 21:23:37 +0000 (21:23 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I7cb23c2e389a8c0d8d153cb241b726360a759f03
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-dispatcher/appc-request-handler/appc-request-handler-api/src/test/java/org/onap/appc/requesthandler/objects/TestRequestHandlerOutput.java

index acc0942..252c08c 100644 (file)
@@ -4,6 +4,8 @@
 * ================================================================================
 * Copyright 2018 TechMahindra
 *=================================================================================
+* Modifications Copyright 2018 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
@@ -22,6 +24,7 @@ package org.onap.appc.requesthandler.objects;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
+import org.onap.appc.domainmodel.lcm.ResponseContext;
 
 public class TestRequestHandlerOutput {
     private RequestHandlerOutput requestHandlerOutput;
@@ -41,4 +44,11 @@ public class TestRequestHandlerOutput {
     public void testToString_ContainsString() {
         Assert.assertTrue(requestHandlerOutput.toString().contains("responseContext"));
     }
+    
+    @Test
+    public void testGetResponseContext() {
+        ResponseContext responseContext= new ResponseContext();
+        requestHandlerOutput.setResponseContext(responseContext);
+        Assert.assertEquals(responseContext, requestHandlerOutput.getResponseContext());
+    }
 }