Beispiel #1
0
        public void ShouldReturnCorrectRequestController_WhenGivenValidUrl(string url, Type expectedType)
        {
            var result = _routingTable.GetRequestController(url, _peopleModel);

            Assert.IsType(expectedType, result);
        }