public void GetQuestionsTest()
        {
            app = new ApplicantSurveyApp();
            List <Question> question = new List <Question>();

            question = app.GetQuestions();
            //Assert.IsTrue(question.Count == 0);
        }
Ejemplo n.º 2
0
        private void GetSurveyQuestions()
        {
            ApplicantSurveyApp applicantSurveyApp = new ApplicantSurveyApp();

            questions = applicantSurveyApp.GetQuestions();
        }