Esempio n. 1
0
        public void GetDraws_FetchDraws_int()
        {
            //arrange
            RockPaperScissorsGame newGame = new RockPaperScissorsGame("Player 1", "Player 2");
            //act
            int result = newGame.GetDraws();

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