Ejemplo n.º 1
0
        public async Task SetUp()
        {
            surveyController = new SurveyController();
            sqController     = new SurveyQuestionController();

            survey = new Survey("test survey");
            await surveyController.PutSurvey(survey);

            surveyQuestion = new SurveyQuestion(survey.SurveyId, 1, "test question");
        }