public async Task CheckForWin_Success(string id)
        {
            //Arrange
            MainService service = CreateService();
            //Act
            Guid gameId = Guid.Parse(id);
            var  result = await service.CheckForWin(gameId);

            //Assert
            Assert.IsTrue(result == GameState.Player1Won || result == GameState.Player2Won || result == GameState.Draw);
        }