@Test
public void testYearMonthDayHourCommaFractionMinusHourMin() throws ParseException
{
String gt = "2008010212,987-1030";
GeneralizedTime generalizedTime = new GeneralizedTime( gt );
String result = generalizedTime.toGeneralizedTime();
assertEquals( gt, result );
}
/**