コード例 #1
0
        public void ThenIAddCommentsToFlatQuestionsInTheCRF_(Table table)
        {
            IEnumerable <AddCommentsForQuestion> Data      = table.CreateSet <AddCommentsForQuestion>();
            List <AddCommentsForQuestion>        Questions = (List <AddCommentsForQuestion>)Data;

            BP_CRF_QuestionCommentsUtilities.AddCommentsToFlatQuestionsInCRF(Questions);
        }
コード例 #2
0
        public void ThenIAddCommentsToQuestionsOfTableInTheCRF_(string TableName, Table table)
        {
            IEnumerable <AddCommentsForQuestion> Data      = table.CreateSet <AddCommentsForQuestion>();
            List <AddCommentsForQuestion>        Questions = (List <AddCommentsForQuestion>)Data;

            BP_CRF_QuestionCommentsUtilities.AddCommentsToTableQuestionsInCRF(TableName, Questions);
        }
コード例 #3
0
 public void WhenIClickClearItemForTheFlatQuestion(String questionPrompt)
 {
     if (!BP_CRF_QuestionCommentsUtilities.InvokeClearItem(questionPrompt))
     {
         ScenarioContext.Current["ActResult"] = "Failed";
     }
 }
コード例 #4
0
        public void WhenIAddCommnetToAFlatQuestion(Table table)
        {
            IEnumerable <AddCommentsForQuestion> data = table.CreateSet <AddCommentsForQuestion>();

            if (!BP_CRF_QuestionCommentsUtilities.AddCommentsToFlatQuestionsInCRF((List <AddCommentsForQuestion>)data))
            {
                ScenarioContext.Current["ActResult"] = "Failed";
            }
        }