Example #1
0
        public void Find_No_Prescription_By_AppointmentId()
        {
            PrescriptionService service = new PrescriptionService(CreateStubRepository());

            Prescription foundPrescriptions = service.GetPrescriptionsForAppointment(2);

            foundPrescriptions.ShouldBeNull();
        }