@Test
@Ignore
public void testParseEntryOfHoursMinutesSecondsText() throws Exception {
final Object parsed = adapter.parseTextEntry(null, "8:30:45", null);
// I can't get the text parser to parse HH:mm:ss before HH:mm!!
final Time expected = new Time(8, 30, 45);
assertEquals(expected, parsed);
}