mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
Print out current locale.provider for some test-failures
JDK 24 will break things here and thus we should get more information about which provider is used when running some tests git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1922487 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
20cb040701
commit
1065c69004
@ -27,6 +27,8 @@ import java.util.Date;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
public class Utils {
|
||||
private static final String provider = System.getProperty("java.locale.providers");
|
||||
|
||||
public static void addRow(Sheet sheet, int rownum, Object... values) {
|
||||
Row row = sheet.createRow(rownum);
|
||||
for (int i = 0; i < values.length; i++) {
|
||||
@ -60,7 +62,8 @@ public class Utils {
|
||||
fe.notifyUpdateCell(cell);
|
||||
CellValue result = fe.evaluate(cell);
|
||||
assertEquals(CellType.STRING, result.getCellType());
|
||||
assertEquals(expectedResult, result.getStringValue());
|
||||
assertEquals(expectedResult, result.getStringValue(),
|
||||
"Failed with locale provider: " + provider);
|
||||
}
|
||||
|
||||
public static void assertDouble(FormulaEvaluator fe, Cell cell, String formulaText, double expectedResult) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user