*/
public void testFormatAndParse() {
Calendar cal = new GregorianCalendar(1962, 0, 19, 8, 40);
Date myBirthDay = cal.getTime();
ISO8601DateTimeFormat formatter = new ISO8601DateTimeFormat();
String serial = formatter.format(myBirthDay);
ParsePosition pos = new ParsePosition(0);
Date parsedDate = formatter.parse(serial, pos);
assertNotNull(
"Parsing of " + serial + " failed at position " + pos.getIndex(),