String e1 = "And now for something completely different.";
String e2 = "A man with three buttocks.";
d.setFormComponent(f1);
d.recordFieldInputValue("Monty");
d.record(new ValidatorException(e1, null));
d.setFormComponent(f2);
d.recordFieldInputValue("Python");
d.record(new ValidatorException(e2, null));
List fieldTracking = d.getFieldTracking();
assertEquals(2, fieldTracking.size());
IFieldTracking t = (IFieldTracking) fieldTracking.get(0);