Ejemplo n.º 1
0
        public void TestGetGameInfo()
        {
            var result = _client.GetGameInfo(new GetGameInfoRequest()
            {
                GameVersion = GameVersionEnum.BUMBLEBEE
            });

            result.ThrowIfException();
            Assert.IsNull(result.Exception);
            Assert.IsNotNull(result.Result);
        }