示例#1
0
        public void RestoreComment_NormalCase()
        {
            const string url  = "https://api.vk.com/method/video.restoreComment?comment_id=35634&owner_id=1&v=5.9&access_token=token";
            const string json =
                @"{
                    'response': 1
                  }";

            VideoCategory cat = GetMockedVideoCategory(url, json);

            bool result = cat.RestoreComment(35634, 1);

            result.ShouldBeTrue();
        }