DateTimeFormatterBuilder 测试失败
在 Java 应用程序中,DateTimeFormatterBuilder 的测试用例在作为单元测试运行时失败,但在执行时工作正常在运行时。该问题由以下测试方法引起:
public void testFormat() throws Exception { final String startDateFormatA = "25-May-2018 11:10"; final String endDateFormatA = "25-May-2018 11:10"; assertEquals("06:00", callDbController.getTimeDifference(startDateFormatA, endDateFormatA)[1]); }
测试尝试使用 DateTimeFormatterBuilder 解析日期字符串并期望得到特定结果。但是,在测试时执行时测试会失败。
运行时和测试时的行为之间的差异是由于 DateTimeFormatterBuilder 未在其 toFormatter() 方法中指定区域设置。这意味着格式化程序将使用 JVM 的默认区域设置,该区域设置在运行时环境和测试环境之间可能有所不同。要解决此问题,toFormatter() 方法应显式指定区域设置,例如 Locale.ENGLISH。
DateTimeFormatter DATE_TIME_FORMAT = new DateTimeFormatterBuilder().parseCaseInsensitive().appendPattern("dd-MMM-yyyy HH:mm").toFormatter(Locale.ENGLISH);
通过设置区域设置,DateTimeFormatterBuilder 确保格式化程序能够在不同的环境中一致地解析日期和时间。环境。
以上是为什么我的 DateTimeFormatterBuilder 单元测试失败,但运行时执行成功?的详细内容。更多信息请关注PHP中文网其他相关文章!