BillableHoursWebApp.Api.Tests.RouteTests.CategoriesControllerRoutesTests.GetWithIdShouldMapCorrectly C# (CSharp) 메소드

GetWithIdShouldMapCorrectly() 개인적인 메소드

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