コード例 #1
0
 public void TestTooFewQuestionsNextRound()
 {
     Bee test = new Bee();
     AddQuestions(test, 3);
     AddContestants(test, 3);
     test.InitializeBee();
     test.RecordAnswer(false);
     test.RecordAnswer(true);
     test.RecordAnswer(true);
     Assert.IsTrue(test.SufficientQuestions() == false);
 }