added more test cases to RestResponseTest 99/69299/1
authorSandeep J <sandeejh@in.ibm.com>
Thu, 27 Sep 2018 12:09:41 +0000 (17:39 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Thu, 27 Sep 2018 12:10:02 +0000 (17:40 +0530)
to increase code coverage

Issue-ID: PORTAL-273
Change-Id: I91c7295ca341e797e9e16ec0fc073e4ef9b55dc2
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
ecomp-sdk/epsdk-music/src/test/java/org/onap/portalapp/music/model/RestResponseTest.java

index 2f2dfaa..3fd8713 100644 (file)
@@ -4,7 +4,8 @@
  * ===================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ===================================================================
- *
+ * Modifications Copyright (C) 2018 IBM.
+ * ===================================================================
  * Unless otherwise specified, all software contained herein is licensed
  * under the Apache License, Version 2.0 (the "License");
  * you may not use this software except in compliance with the License.
@@ -43,16 +44,21 @@ import static org.junit.Assert.assertTrue;
 import org.junit.Test;
 
 public class RestResponseTest {
-       
-       @Test
-       public void restResponseTest() {
-               RestResponse<String> expected = new RestResponse<>();
-               expected.setMessage("testMessage");
-               expected.setResponse("testResponse");
-               expected.setStatus(RestStatusEnum.ERROR);
-               RestResponse<String> actual =  new RestResponse<String>(RestStatusEnum.ERROR, "testMessage", "testResponse");
-               assertEquals(expected, actual);
-               assertEquals(expected.hashCode(), actual.hashCode());
-               assertTrue(actual.equals(expected));
-       }
+    
+    @Test
+    public void restResponseTest() {
+        RestResponse<String> expected = new RestResponse<>();
+        expected.setMessage("testMessage");
+        expected.setResponse("testResponse");
+        expected.setStatus(RestStatusEnum.ERROR);
+        RestResponse<String> actual =  new RestResponse<String>(RestStatusEnum.ERROR, "testMessage", "testResponse");
+        assertEquals(expected, actual);
+        assertEquals(expected.hashCode(), actual.hashCode());
+        assertTrue(actual.equals(expected));
+        assertEquals(RestStatusEnum.ERROR, expected.getStatus());
+        assertEquals("testMessage", expected.getMessage());
+        assertEquals("testResponse", expected.getResponse());
+        String expectedtoStringOutput="RestResponse [status=error, message=testMessage, response=testResponse]";
+        assertEquals(expectedtoStringOutput,expected.toString());
+    }
 }