@Test public void userInput_CheckForCorrectInt_true() { RPSGame newGame = new RPSGame(); Integer num1 = 1; assertEquals(num1, newGame.userInput("paper")); }
@Test public void returnWinner_CheckForTie_true() { RPSGame newGame = new RPSGame(); assertEquals("Congratulations! You Tied!", newGame.returnWinner(1, 1)); }
@Test public void returnWinner_CheckForCorrectWinner_true() { RPSGame newGame = new RPSGame(); assertEquals("Congratulations! Paper Wins!", newGame.returnWinner(0, 1)); }