Beispiel #1
0
        public void GetWins_GetPlayerTwoWins_int()
        {
            //arrange
            RockPaperScissorsGame newGame = new RockPaperScissorsGame("Player 1", "Player 2");
            //act
            int result = newGame.GetPlayerTwoWins();

            //assert
            Assert.AreEqual(0, result);
        }