Beispiel #1
0
        public void DoesGradeExist_StudentAndCourseNotFound_ReturnsFalse()
        {
            var result = gradeRepository.DoesGradeExist(1, 1);

            //should return false
            Assert.IsFalse(result);
        }