Unit test for ProviderResponse.java 31/38531/2
authoramshegokar <AS00500801@techmahindra.com>
Mon, 26 Mar 2018 12:52:33 +0000 (18:22 +0530)
committerRanda Maher <rx196w@att.com>
Mon, 26 Mar 2018 16:35:20 +0000 (16:35 +0000)
Unit test for ProviderResponse.java
Sonar-Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-sdc-listener-bundle%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fsdc%2Flistener%2FProviderResponse.java

Change-Id: I85984489a404e3980d962007a677f2a0c016a50d
Issue-ID: APPC-785
Signed-off-by: amshegokar <AS00500801@techmahindra.com>
appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/listener/ProviderResponseTest.java [new file with mode: 0644]

diff --git a/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/listener/ProviderResponseTest.java b/appc-sdc-listener/appc-sdc-listener-bundle/src/test/java/org/onap/appc/sdc/listener/ProviderResponseTest.java
new file mode 100644 (file)
index 0000000..6adcbc2
--- /dev/null
@@ -0,0 +1,45 @@
+/*\r
+* ============LICENSE_START=======================================================\r
+* ONAP : APPC\r
+* ================================================================================\r
+* Copyright 2018 TechMahindra\r
+*=================================================================================\r
+* Licensed under the Apache License, Version 2.0 (the "License");\r
+* you may not use this file except in compliance with the License.\r
+* You may obtain a copy of the License at\r
+*\r
+*     http://www.apache.org/licenses/LICENSE-2.0\r
+*\r
+* Unless required by applicable law or agreed to in writing, software\r
+* distributed under the License is distributed on an "AS IS" BASIS,\r
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+* See the License for the specific language governing permissions and\r
+* limitations under the License.\r
+* ============LICENSE_END=========================================================\r
+*/\r
+package org.onap.appc.sdc.listener;\r
+\r
+import org.junit.Assert;\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+\r
+public class ProviderResponseTest {\r
+\r
+    private ProviderResponse providerResponse;\r
+\r
+    @Before\r
+    public void setUp() {\r
+        providerResponse = new ProviderResponse(200, "This is Body");\r
+    }\r
+\r
+    @Test\r
+    public void testGetBody() {\r
+        Assert.assertNotNull(providerResponse.getBody());\r
+        Assert.assertEquals("This is Body", providerResponse.getBody());\r
+    }\r
+    @Test\r
+    public void testGetStatus() {\r
+        Assert.assertNotNull(providerResponse.getStatus());\r
+        Assert.assertEquals(200,providerResponse.getStatus());\r
+    }\r
+}\r