public void DeleteAlbum_NormalCase() { const string url = "https://api.vk.com/method/video.deleteAlbum?album_id=52153813&v=5.9&access_token=token"; const string json = @"{ 'response': 1 }"; VideoCategory cat = GetMockedVideoCategory(url, json); bool result = cat.DeleteAlbum(52153813); result.ShouldBeTrue(); }