コード例 #1
0
ファイル: TestRound.cs プロジェクト: facumar93/BotII_Grupo3
        public void Increment1PointToUserWhenHisCardIsSelected()
        {
            game.AddUserToUserList(player);
            game.AddUserToUserList(judge);
            player.AddCardToUser(white);
            round.AddAnswer(white);
            game.Winner(white);
            int points = player.Points;

            Assert.AreEqual(1, points);
        }