Пример #1
0
        public void ExamsController_InitializesViewQuestionMapper()
        {
            var examsController = new ExamsController();

            Assert.IsNotNull(examsController.GetFieldValue <ViewQuestionMapper>("_viewQuestionMapper"));
        }
Пример #2
0
        public void ExamsController_InitializesCorrectionProcess()
        {
            var examsController = new ExamsController();

            Assert.IsNotNull(examsController.GetFieldValue <CorrectionProcess>("_correctionProcess"));
        }
Пример #3
0
        public void ExamsController_InitializesQuestionsRepository()
        {
            var examsController = new ExamsController();

            Assert.IsNotNull(examsController.GetFieldValue <QuestionsRepository>("_questionsRepository"));
        }
Пример #4
0
 public void ExamsController_InitializesViewQuestionMapper()
 {
     var examsController = new ExamsController();
     Assert.IsNotNull(examsController.GetFieldValue<ViewQuestionMapper>("_viewQuestionMapper"));
 }
Пример #5
0
 public void ExamsController_InitializesQuestionsRepository()
 {
     var examsController = new ExamsController();
     Assert.IsNotNull(examsController.GetFieldValue<QuestionsRepository>("_questionsRepository"));
 }
Пример #6
0
 public void ExamsController_InitializesCorrectionProcess()
 {
     var examsController = new ExamsController();
     Assert.IsNotNull(examsController.GetFieldValue<CorrectionProcess>("_correctionProcess"));
 }