public void True_1() { var nimGame = new NimGame("1"); var result = nimGame.IWin(); Assert.True(result); }
public void False_4() { var nimGame = new NimGame("4"); var result = nimGame.IWin(); Assert.False(result); }