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:
Dominik Stadler 2024-12-14 10:24:29 +00:00
parent 20cb040701
commit 1065c69004
1 changed files with 4 additions and 1 deletions

View File

@ -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) {