Example #1
0
        public async Task DemoRun_GetArtistInformationAsync(string userId)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetArtistInformationAsync(userId);

            //Assert
            Assert.NotNull(result);
        }