public void MoveToAlbum_NormalCase() { const string url = "https://api.vk.com/method/video.moveToAlbum?album_id=52154378&video_ids=167593938&v=5.9&access_token=token"; const string json = @"{ 'response': 1 }"; VideoCategory cat = GetMockedVideoCategory(url, json); bool result = cat.MoveToAlbum(new long[] { 167593938 }, 52154378); result.ShouldBeTrue(); }