BillableHoursWebApp.Api.Tests.RouteTests.CategoriesControllerRoutesTests.GetWithIdShouldMapCorrectly C# (CSharp) Method

GetWithIdShouldMapCorrectly() private method

private GetWithIdShouldMapCorrectly ( ) : void
return void
        public void GetWithIdShouldMapCorrectly()
        {
            MyWebApi
                .Routes()
                .ShouldMap("api/categories/5")
                .To<CategoriesController>(c => c.Get(5));
        }