예제 #1
0
        public void Not_Found_Prescriptions_With_Doctor_Searh_Parameter()
        {
            PrescriptionService service = new PrescriptionService(CreateStubRepository());

            List <Prescription> searchResult = service.FindPrescriptionsForDoctorParameter(1, "Milorad");

            Assert.Empty(searchResult);
        }