Esempio n. 1
0
        public void ExamsController_InitializesViewQuestionMapper()
        {
            var examsController = new ExamsController();

            Assert.IsNotNull(examsController.GetFieldValue <ViewQuestionMapper>("_viewQuestionMapper"));
        }
Esempio n. 2
0
        public void ExamsController_InitializesCorrectionProcess()
        {
            var examsController = new ExamsController();

            Assert.IsNotNull(examsController.GetFieldValue <CorrectionProcess>("_correctionProcess"));
        }
Esempio n. 3
0
        public void ExamsController_InitializesQuestionsRepository()
        {
            var examsController = new ExamsController();

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