added test cases to DataRowTest.java 75/68675/1
authorSandeep J <sandeejh@in.ibm.com>
Mon, 24 Sep 2018 14:06:21 +0000 (19:36 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Mon, 24 Sep 2018 14:06:33 +0000 (19:36 +0530)
to increase code coverage

Issue-ID: PORTAL-273
Change-Id: Ifa6bc82a8930dfd3fa60e58189c8f7aa29f24fd6
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
ecomp-sdk/epsdk-analytics/src/test/java/org/onap/portalsdk/analytics/view/DataRowTest.java

index 3d20683..69bf952 100644 (file)
@@ -4,6 +4,8 @@
  * ===================================================================
  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
  * ===================================================================
+ * Modifications Copyright © 2018 IBM.
+ * ===================================================================
  *
  * Unless otherwise specified, all software contained herein is licensed
  * under the Apache License, Version 2.0 (the "License");
@@ -41,25 +43,47 @@ import static org.junit.Assert.*;
 
 import java.util.Vector;
 
+import org.junit.Before;
 import org.junit.Test;
 
 public class DataRowTest {
+    private DataRow dataRow;
+    private Vector vc;
+    @Before
+    public void setUp()
+    {
+        dataRow = new DataRow();
 
-       @Test
-       public void mockDataRowTest() {
-               DataRow dataRow = new DataRow();
+        DataValue dataValue = new DataValue();
+        dataRow.setRowFormat(false);
+        HtmlFormatter formatter = new HtmlFormatter();
+        dataRow.setRowFormatter(formatter);
+        dataRow.setRowNum(1);
+        vc = new Vector<>();
+        vc.add(dataRow);
+        dataRow.setRowValues(vc);
+        dataRow.setFormatId("test");
+    }
 
-               DataValue dataValue = new DataValue();
-               dataRow.setRowFormat(false);
-               HtmlFormatter formatter = new HtmlFormatter();
-               dataRow.setRowFormatter(formatter);
-               dataRow.setRowNum(1);
-               Vector vc = new Vector<>();
-               vc.add(dataRow);
-               dataRow.setRowValues(vc);
-               dataRow.setFormatId("test");
-               assertEquals(dataRow.getFormatId(), "test");
-               assertEquals(dataRow.getRowNum(), 1);
-               assertEquals(dataRow.getRowValues(), vc);
-       }
+    @Test
+    public void mockDataRowTest() {
+    
+        assertEquals(dataRow.getFormatId(), "test");
+        assertEquals(dataRow.getRowNum(), 1);
+        assertEquals(dataRow.getRowValues(), vc);
+    }
+    
+    @Test
+    public void testGetBgColorHtml() {
+    
+        String s=dataRow.getBgColorHtml();
+        assertNotNull(s);
+    }
+    
+    @Test
+    public void testGetDataValue()
+    {
+        String s=dataRow.getDataValue("testColId");
+        assertNull(s);
+    }
 }