Exemple #1
0
        public void Not_Found_Prescriptions_With_Date_Searh_Parameter()
        {
            PrescriptionService service = new PrescriptionService(CreateStubRepository());

            List <Prescription> searchResult = service.FindPrescriptionsForDateParameter(1, "2021-12-23");

            Assert.Empty(searchResult);
        }