-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bug-67784] add test for divide error
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1913064 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
poi/src/test/java/org/apache/poi/ss/formula/functions/TestErrors.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.apache.poi.ss.formula.functions; | ||
|
||
import org.apache.poi.hssf.usermodel.HSSFCell; | ||
import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator; | ||
import org.apache.poi.hssf.usermodel.HSSFRow; | ||
import org.apache.poi.hssf.usermodel.HSSFWorkbook; | ||
import org.apache.poi.ss.usermodel.FormulaError; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.apache.poi.ss.util.Utils.assertError; | ||
|
||
final class TestErrors { | ||
@Test | ||
void testTextDivide() throws IOException { | ||
try (HSSFWorkbook wb = new HSSFWorkbook()) { | ||
HSSFRow row = wb.createSheet().createRow(0); | ||
HSSFCell cell = row.createCell(0); | ||
cell.setCellValue("text"); | ||
HSSFCell evalCell = row.createCell(1); | ||
HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb); | ||
assertError(fe, evalCell, "A1/2", FormulaError.VALUE); | ||
} | ||
} | ||
} |