Exemplo n.º 1
0
        public void DeleteComment_NormalCase()
        {
            const string url  = "https://api.vk.com/method/video.deleteComment?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.DeleteComment(35634, 1);

            result.ShouldBeTrue();
        }