From 1065c690046971619e0ecdf45a8d3a14eae2ab28 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Sat, 14 Dec 2024 10:24:29 +0000 Subject: [PATCH] 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 --- poi/src/test/java/org/apache/poi/ss/util/Utils.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/poi/src/test/java/org/apache/poi/ss/util/Utils.java b/poi/src/test/java/org/apache/poi/ss/util/Utils.java index d838bea27c..0bbb220852 100644 --- a/poi/src/test/java/org/apache/poi/ss/util/Utils.java +++ b/poi/src/test/java/org/apache/poi/ss/util/Utils.java @@ -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) {