示例#1
0
        public async Task GetArtistByIdAsync_Given_NullId_Should_Return_400_BadRequestObjectResult()
        {
            var retval = await _artistController.GetArtistByIdAsync(string.Empty);

            Assert.IsInstanceOfType(retval, typeof(BadRequestObjectResult));
        }