//Build a couple of encounters for the form
List<Encounter> encounters = new ArrayList<Encounter>();
//encounter1
Encounter e = new Encounter();
e.setPatient(Context.getPatientService().getPatient(2));
Date date = Context.getDateFormat().parse("01/02/2003");
e.setDateCreated(new Date());
e.setEncounterDatetime(date);
e.setLocation(Context.getLocationService().getLocation(2));
e.setProvider(Context.getPersonService().getPerson(502));
//top of form
TestUtil.addObs(e, 3032, date, date);
TestUtil.addObs(e, 1441, Context.getConceptService().getConcept(656), date);
TestUtil.addObsGroup(e, 1004, date, 1005, Context.getConceptService().getConcept(1001), new Date());
TestUtil.addObs(e, 1119, new Date(), date);
TestUtil.addObs(e, 2474, Context.getConceptService().getConcept(767), date);
//DST RESULT
Obs dstParent = TestUtil.createObs(e, 3040, null, date);
e.addObs(dstParent);
Obs resultParent = TestUtil.createObs(e, 3025, null, date);
dstParent.addGroupMember(resultParent);
Obs drugResult = TestUtil.createObs(e, 3017, Context.getConceptService().getConcept(656), date);
resultParent.addGroupMember(drugResult);
Obs colonies1 = TestUtil.createObs(e, 3016, 200, date);