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