From: Sandeep J Date: Fri, 27 Jul 2018 20:47:54 +0000 (+0530) Subject: added test case to TestResponseHandlerOutput.java X-Git-Tag: 1.4.0~152 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F11%2F57911%2F2;p=appc.git added test case to TestResponseHandlerOutput.java to increase code coverage Issue-ID: APPC-1086 Change-Id: I7cb23c2e389a8c0d8d153cb241b726360a759f03 Signed-off-by: Sandeep J --- diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-api/src/test/java/org/onap/appc/requesthandler/objects/TestRequestHandlerOutput.java b/appc-dispatcher/appc-request-handler/appc-request-handler-api/src/test/java/org/onap/appc/requesthandler/objects/TestRequestHandlerOutput.java index acc0942d8..252c08cfb 100644 --- a/appc-dispatcher/appc-request-handler/appc-request-handler-api/src/test/java/org/onap/appc/requesthandler/objects/TestRequestHandlerOutput.java +++ b/appc-dispatcher/appc-request-handler/appc-request-handler-api/src/test/java/org/onap/appc/requesthandler/objects/TestRequestHandlerOutput.java @@ -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()); + } }