예제 #1
0
 public void T14GoldenTest()
 {
     for (int j = 0; j < 500; j++)
     {
         Bingo     bingo = new Bingo(20);
         BingoCard bc    = bingo.bingoCard;
         bingo.CommenceGame();
         Assert.True(bc.card == bingo.bingoCard.card);
         Assert.True(bingo.status == "win" || bingo.status == "lose");
     }
 }