]> source.dussan.org Git - poi.git/commitdiff
bug 59030: convert to junit4; whitespace
authorJaven O'Neal <onealj@apache.org>
Wed, 8 Feb 2017 18:32:53 +0000 (18:32 +0000)
committerJaven O'Neal <onealj@apache.org>
Wed, 8 Feb 2017 18:32:53 +0000 (18:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1782224 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java

index 00e34e241e03ff7fbcc7db51c4d8f526c86984d5..d33a9aa3a3c6a4a18ec0fa1d287e8593c3982229 100644 (file)
 
 package org.apache.poi.xwpf.usermodel;
 
-import junit.framework.TestCase;
+import static org.junit.Assert.*;
+
+import org.junit.Ignore;
+import org.junit.Test;
+
 import org.apache.poi.xwpf.XWPFTestDataSamples;
 import org.apache.poi.xwpf.usermodel.XWPFTableCell.XWPFVertAlign;
 import org.openxmlformats.schemas.wordprocessingml.x2006.main.*;
 
 import java.util.List;
 
-public class TestXWPFTableCell extends TestCase {
-    @Override
-    protected void setUp() throws Exception {
-        super.setUp();
-    }
+public class TestXWPFTableCell {
 
+    @Test
     public void testSetGetVertAlignment() throws Exception {
         // instantiate the following classes so they'll get picked up by
         // the XmlBean process and added to the jar file. they are required
@@ -60,6 +61,7 @@ public class TestXWPFTableCell extends TestCase {
         assertEquals(XWPFVertAlign.BOTH, al);
     }
 
+    @Test
     public void testSetGetColor() throws Exception {
         // create a table
         XWPFDocument doc = new XWPFDocument();
@@ -77,9 +79,10 @@ public class TestXWPFTableCell extends TestCase {
     }
 
     /**
-     * ensure that CTHMerge & CTTcBorders go in poi-ooxml.jar
+     * ensure that CTHMerge and CTTcBorders go in poi-ooxml.jar
      */
     @SuppressWarnings("unused")
+    @Test
     public void test54099() {
         XWPFDocument doc = new XWPFDocument();
         CTTbl ctTable = CTTbl.Factory.newInstance();
@@ -96,6 +99,7 @@ public class TestXWPFTableCell extends TestCase {
         CTVMerge vMerge = tcPr.addNewVMerge();
     }
 
+    @Test
     public void testCellVerticalAlign() throws Exception{
         XWPFDocument docx = XWPFTestDataSamples.openSampleDocument("59030.docx");
         List<XWPFTable> tables = docx.getTables();
@@ -111,18 +115,19 @@ public class TestXWPFTableCell extends TestCase {
         assertEquals(XWPFVertAlign.CENTER, tableRows.get(1).getCell(0).getVerticalAlignment());
         assertEquals(XWPFVertAlign.TOP, tableRows.get(1).getCell(1).getVerticalAlignment());
     }
-       
-       public void testCellVerticalAlign2() throws Exception{
-               XWPFDocument docx = XWPFTestDataSamples.openSampleDocument("TestTableCellAlign.docx");
-               List<XWPFTable> tables = docx.getTables();
+
+    @Test
+    public void testCellVerticalAlignShouldNotThrowNPE() throws Exception {
+        XWPFDocument docx = XWPFTestDataSamples.openSampleDocument("TestTableCellAlign.docx");
+        List<XWPFTable> tables = docx.getTables();
         for (XWPFTable table : tables) {
             List<XWPFTableRow> tableRows = table.getRows();
             for (XWPFTableRow tableRow : tableRows) {
                 List<XWPFTableCell> tableCells = tableRow.getTableCells();
                 for (XWPFTableCell tableCell : tableCells) {
-                                       assertNotNull(tableCell.getVerticalAlignment());
-                               }
-                       }
-               }                       
-       }
+                    assertNotNull(tableCell.getVerticalAlignment());
+                }
+            }
+        }
+    }
 }