aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java')
-rw-r--r--src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java24
1 files changed, 9 insertions, 15 deletions
diff --git a/src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java b/src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java
index b0944ee27e..8127d8e4d7 100644
--- a/src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java
+++ b/src/testcases/org/apache/poi/ss/usermodel/BaseTestColumnShifting.java
@@ -18,21 +18,20 @@
*/
package org.apache.poi.ss.usermodel;
-import org.junit.Before;
-import org.junit.Test;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNull;
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertThrows;
import org.apache.poi.ss.usermodel.helpers.ColumnShifter;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
public abstract class BaseTestColumnShifting {
protected Workbook wb;
protected Sheet sheet1;
protected ColumnShifter columnShifter;
- @Before
+ @BeforeEach
public void init() {
int rowIndex = 0;
sheet1 = wb.createSheet("sheet1");
@@ -63,7 +62,7 @@ public abstract class BaseTestColumnShifting {
@Test
public void testShift3ColumnsRight() {
columnShifter.shiftColumns(1, 2, 3);
-
+
Cell cell = sheet1.getRow(0).getCell(4);
assertNull(cell);
cell = sheet1.getRow(1).getCell(4);
@@ -76,12 +75,7 @@ public abstract class BaseTestColumnShifting {
@Test
public void testShiftLeft() {
- try {
- columnShifter.shiftColumns(1, 2, -3);
- fail("Shift to negative indices should throw exception");
- }
- catch(IllegalStateException e){
- assertTrue(true);
- }
+ assertThrows(IllegalStateException.class, () -> columnShifter.shiftColumns(1, 2, -3),
+ "Shift to negative indices should throw exception");
}
}