示例#1
0
        public void Integration_VimeoClient_GetAccountVideo_RetrievesVideo()
        {
            // arrange
            long        clipId = 103374506; // Your video ID here
            VimeoClient client = CreateAuthenticatedClient();

            // act
            Video video = client.GetAccountVideo(clipId);

            // assert
            Assert.IsNotNull(video);
        }