Ejemplo n.º 1
0
        public void GetShowByIdAsync_IdIsValid_ReturnShowDto()
        {
            var result = (OkObjectResult)_showController.GetShowByIdAsync(1234).Result;

            Assert.AreEqual(_showDto.ID, ((ShowDTO)result.Value).ID);
        }