1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2020-05-10 13:47:42 +03:00

16 lines
341 B
C#

using NUnit.Framework;
using YouTube.Models;
namespace YouTube.API.Test
{
public class VideoPlaybackTest
{
[Test]
public void ValidVideoPlaybackTest()
{
ExtendedYouTubeService service = new ExtendedYouTubeService();
VideoPlayback info = service.VideoPlayback.List("VC5-YkjMHuw").Execute();
Assert.NotNull(info);
}
}
}