Esempio n. 1
0
 public override void SetSelectionRock()
 {
     RPSGame RPSGame = new RPSGame();
     RPSGame.SetHumanSelection("Rock");
     Assert.AreSame(RPSGame.HumanSelection, "Rock");
 }
Esempio n. 2
0
 public override void SetSelectionScissors()
 {
     RPSGame RPSGame = new RPSGame();
     RPSGame.SetHumanSelection("Scissors");
     Assert.AreSame(RPSGame.HumanSelection, "Scissors");
 }
Esempio n. 3
0
 public override void SetSelectionPaper()
 {
     RPSGame RPSGame = new RPSGame();
     RPSGame.SetHumanSelection("Paper");
     Assert.AreSame(RPSGame.HumanSelection, "Paper");
 }