コード例 #1
0
        public void GetById_UnknowGuiPased_ReturnNotFoundResult()
        {
            var notFoundResult = _controller.GetById(Guid.NewGuid());

            Assert.IsType <NotFoundResult>(notFoundResult.Result);
        }