Exemple #1
0
        public void Get_survey_ids_for_doctor_ids()
        {
            MedicalExaminationService medicalExaminationService = new MedicalExaminationService(CreateMedicalExaminationStubRepository());
            SurveyService             surveyService             = new SurveyService(CreateSurveyStubRepository(), medicalExaminationService, null);

            Dictionary <int, List <int> > results = surveyService.GetSurveyIdsForDoctorIds();

            Assert.Equal(2, results.Keys.Count);
        }