import org.apache.poi.xddf.usermodel.chart.XDDFChartData;
import org.apache.poi.xssf.XSSFITestDataProvider;
import org.apache.poi.xssf.model.StylesTable;
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCalcPr;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalLink;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
+import java.util.Locale;
import java.util.zip.CRC32;
import static org.apache.poi.hssf.HSSFTestDataSamples.openSampleFileStream;
super(XSSFITestDataProvider.instance);
}
+ @BeforeAll
+ static void setUp() {
+ LocaleUtil.setUserLocale(Locale.US);
+ }
+
+ @AfterAll
+ static void tearDown() {
+ LocaleUtil.setUserLocale(null);
+ }
+
/**
* Tests that we can save, and then re-load a new document
*/
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.usermodel.FormulaError;
+import org.apache.poi.util.LocaleUtil;
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import java.time.LocalDate;
+import java.util.Locale;
import static org.apache.poi.ss.util.Utils.addRow;
import static org.apache.poi.ss.util.Utils.assertDouble;
*/
public class TestDays {
+ @BeforeAll
+ static void setUp() {
+ LocaleUtil.setUserLocale(Locale.US);
+ }
+
+ @AfterAll
+ static void tearDown() {
+ LocaleUtil.setUserLocale(null);
+ }
+
//https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df
@Test
void testMicrosoftExample1() throws IOException {
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.IOException;
+import java.util.Locale;
import org.apache.poi.ss.ITestDataProvider;
+import org.apache.poi.util.LocaleUtil;
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
/**
assertEquals(-1, BuiltinFormats.getBuiltinFormat(customFmt));
}
+ @BeforeAll
+ static void setUp() {
+ LocaleUtil.setUserLocale(Locale.US);
+ }
+
+ @AfterAll
+ static void tearDown() {
+ LocaleUtil.setUserLocale(null);
+ }
+
@Test
public final void testBuiltinFormats() throws IOException {
try (Workbook wb = _testDataProvider.createWorkbook()) {