Ejemplo n.º 1
0
        public void TestGameUserFriendSupport()
        {
            var result = _client.GameUserFriendSupport(new GameUserFriendSupportRequest()
            {
                GameVersion    = GameVersionEnum.BUMBLEBEE,
                OpenId         = "213123217",
                TargetUserId   = Guid.Parse("A70CA5FA-5A82-40C4-8BDA-8B4FFC5DC07B"),
                WechatNickName = "blablabla",
                WechatHeadImg  = "imgimgimg"
            });

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