Beispiel #1
0
        public void Different_appointment_id()
        {
            SurveyService service = new SurveyService(CreateQuestionStubRepository(), CreateSurveyStubRepository());
            bool          b       = service.CheckIfExistsById(4);

            b.ShouldBeTrue();
        }
Beispiel #2
0
        public void Same_appointment_id()
        {
            SurveyService service = new SurveyService(CreateQuestionStubRepository(), CreateSurveyStubRepository());
            bool          b       = service.CheckIfExistsById(2);

            b.ShouldBeFalse();
        }