所以,我正在做一个项目,我必须测试我的方法是否ParseException
在它发生时捕捉到它。这是我需要测试的方法的样子:
public void convertToModel(final BuildStone bs, final TextBuildStone model) {
try {
model.setBeginDateRange(ProjectDateConverter.projectDateToCalendarDefaultMin(bs.getFromDate(), true));
} catch (final ParseException e) {
SystemContext.getLogger().warning(
this,
"treatGeneralData",
"Date not converted: {0}, BeginDate set at MinDate",
bs.getFromDate());
model.setBeginDateRange(CalendarConstants.getMinDate());
}
所以我必须测试这个方法何时捕获一个ParseException
.
抛出 ParseException 的方法是projectDateToCalendarDefaultMin
,这里是该方法的代码:
public static Calendar projectDateToCalendarDefaultMin(final BigDecimal dateValue, final boolean useMinDate) throws ParseException {
return dateValue == null ? ProjectDateConverter.projectDateStringToCalendar(null, useMinDate, false) : ProjectDateConverter
.projectDateStringToCalendar(dateValue.toString(), useMinDate, false);
引发 ParseException 的方法被调用projectDateStringToCalendar
。这是那个样子:
private static Calendar projectDateStringToCalendar(final String dateValue, final boolean useMinDate, final boolean useMaxDate)
throws ParseException {
if (useMinDate && useMaxDate) {
throw new IllegalArgumentException("useMinDate and useMaxDate may not be set as true ");
}
if (StringUtils.isEmpty(dateValue)) {
if (useMinDate) {
return CalendarConstants.getMinDate();
} else if (useMaxDate) {
return CalendarConstants.getMaxDate();
} else {
return null;
}
}
...
final GregorianCalendar gc = new GregorianCalendar();
gc.setTime(new SimpleDateFormat("yyyyMMdd").parse(dateValue));
return gc;
}
所以这是ParseException
最终在方法中抛出的地方parse()
。ParseException
来自text.parse
包,方法解析如下所示:
public Date parse(String source) throws ParseException
{
ParsePosition pos = new ParsePosition(0);
Date result = parse(source, pos);
if (pos.index == 0)
throw new ParseException("Unparseable date: \"" + source + "\"" ,
pos.errorIndex);
return result;
}
我已经尝试做的是设置bs.getFromDate
为 null 但测试总是红色的。我在测试中使用@Test(expected: ParseException.class)
了注释,但我无法让它变绿。也许bs.getFromDate
不是正在解析的正确值?
有没有人有任何其他想法如何使这个测试工作?提前致谢!