public void ExamsController_InitializesViewQuestionMapper()
        {
            var examsController = new ExamsController();

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

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

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