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