示例#1
0
 public void AddCommunityCard_AddsCardToCommunityCards()
 {
     Game game = new Game();
     Deck deck = new Deck();
     game.AddCommunityCard(deck.Pop());
     Assert.AreEqual(51, deck.Count);
     Assert.AreEqual(1, game.CommunityCards.Count());
 }