Esempio n. 1
0
        public void Integration_VimeoClient_GetAccountAlbumVideo_RetrievesVideo()
        {
            // arrange
            const long  albumId = 2993579;   // Your album ID here
            const long  clipId  = 103374506; // Your video ID here
            VimeoClient client  = CreateAuthenticatedClient();

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

            // assert
            Assert.IsNotNull(video);
        }