Ejemplo n.º 1
0
        public void TestGetGameUserInfo()
        {
            var result = _client.GetGameUserInfo(new GetGameUserInfoRequest()
            {
                GameVersion = GameVersionEnum.BUMBLEBEE,
                UserId      = Guid.Parse("CB3EE07D-9D47-480E-8CC7-489DBF284555")
            });

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