public void Sum_questions_to_which_everyone_answered_yes( string groupAnswersDescription, int expectedAnswersCount) { //When var answersCount = GroupsAnswersCounter.SumQuestionsToWhichEveryoneAnsweredYes(groupAnswersDescription); //Then Assert.Equal(expectedAnswersCount, answersCount); }
public void Sum_questions_to_which_anyone_answered_yes( string groupAnswersDescription, int expectedYesAnswersSum) { //When var yesAnswersSum = GroupsAnswersCounter.SumDistinctYesAnswers(groupAnswersDescription); //Then Assert.Equal(expectedYesAnswersSum, yesAnswersSum); }