public void FillByGivenGuNoGUYearReturnsPatientNotNull() { dataContext.Patient_Info.Add(GetTestPatient()); PatientBO patient = new PatientBO(); patient.FillBy(1, 2015); Assert.IsNotNull(patient); }
public void FillByGivenGuNoGUYearReturnsNoRecordException() { dataContext.Patient_Info.Add(GetTestPatient()); PatientBO patient = new PatientBO(); patient.FillBy(0, 2015); }
public void FillByGivenGuNoGUYearReturnsNoRecordException() { dataContext.Patient_Info.Add(GetTestPatient()); PatientBO patient = new PatientBO(); patient.FillBy(0,2015); }