Exemplo n.º 1
0
        public void Integration_VimeoClient_GetUserAlbumVideo_RetrievesVideo()
        {
            // arrange
            VimeoClient client = CreateAuthenticatedClient();

            // act
            Video video = client.GetUserAlbumVideo(vimeoSettings.UserId, vimeoSettings.AlbumId, vimeoSettings.VideoId);

            // assert
            Assert.IsNotNull(video);
        }
Exemplo n.º 2
0
        public void Integration_VimeoClient_GetUserAlbumVideo_RetrievesVideo()
        {
            // arrange
            const long  userId  = 6029930;   // Your user ID here
            const long  albumId = 2993579;   // Your album ID here
            const long  clipId  = 103374506; // Your video ID here
            VimeoClient client  = CreateAuthenticatedClient();

            // act
            Video video = client.GetUserAlbumVideo(userId, albumId, clipId);

            // assert
            Assert.IsNotNull(video);
        }