public void Test6_GameWinners_ScissorAndPaper_ScissorWins()
 {
     string[] tempResult= new string[]{"scissor Wins","player2 Wins"};
       Game testGame = new Game("Paper", "Scissor");
       Assert.Equal(tempResult, testGame.GameWinners());
 }
 public void Test3_GameWinners_RockAndScissor_RockWins()
 {
     string[] tempResult= new string[]{"rock Wins","player2 Wins"};
       Game testGame = new Game("Scissor", "Rock");
       Assert.Equal(tempResult, testGame.GameWinners());
 }
 public void Test4_GameWinners_RockAndPaper_PaperWins()
 {
     string[] tempResult= new string[]{"paper Wins","player1 Wins"};
       Game testGame = new Game("Paper", "Rock");
       Assert.Equal(tempResult, testGame.GameWinners());
 }
 public void Test1_GameWinners_RockAndRock_Draw()
 {
     string[] tempResult= new string[]{"Draw","No One Win"};
       Game testGame = new Game("Rock", "Rock");
       Assert.Equal(tempResult, testGame.GameWinners());
 }