示例#1
0
        public async Task CoverArtArchiveClient_Should_Return_Null_If_AlbumGuid_Does_Not_Exist()
        {
            CoverArtArchiveClient target = new CoverArtArchiveClient();
            var result = await target.GetAsync(Guid.Parse("52074ba6-e495-4ef3-9bb4-0703888a9f68"));

            Assert.IsNull(result);
        }
示例#2
0
 public async Task Can_Get_AlbumArtCoverUrl()
 {
     CoverArtArchiveClient client = new CoverArtArchiveClient();
     await client.GetAsync(Guid.Parse("178b993e-fa9c-36d3-9d73-c5a8ba0c748d"));
 }