예제 #1
0
        public void Cancel_NoTourWithGivenIdExists_ShouldReturnNotfound()
        {
            var result = _controller.Cancel(1);

            result.Should().BeOfType <NotFoundResult>();
        }