public static void assertFormWithEnrollment(
     MobileMidwifeForm exptectedForm, MobileMidwifeEnrollment actual) {
   assertThat(actual.getStaffId(), is(exptectedForm.getStaffId()));
   assertThat(actual.getFacilityId(), is(exptectedForm.getFacilityId()));
   assertThat(actual.getPatientId(), is(exptectedForm.getMotechId()));
   assertThat(actual.getServiceType(), is(exptectedForm.getServiceType()));
   assertThat(actual.getReasonToJoin(), is(exptectedForm.getReasonToJoin()));
   assertThat(actual.getMedium(), is(exptectedForm.getMediumStripingOwnership()));
   assertThat(actual.getDayOfWeek(), is(exptectedForm.getDayOfWeek()));
   assertThat(actual.getTimeOfDay(), is(exptectedForm.getTimeOfDay()));
   assertThat(actual.getLanguage(), is(exptectedForm.getLanguage()));
   assertThat(actual.getLearnedFrom(), is(exptectedForm.getLearnedFrom()));
   assertThat(actual.getPhoneNumber(), is(exptectedForm.getMmRegPhone()));
   assertThat(actual.getPhoneOwnership(), is(exptectedForm.getPhoneOwnership()));
   assertThat(actual.getConsent(), is(exptectedForm.getConsent()));
   assertThat(actual.getEnrollmentDateTime().toLocalDate(), is(new LocalDate()));
 }