BillableHoursWebApp.Api.Tests.RouteTests.ProjectsControllerRoutesTests.GetWithCategoryIdShouldMapCorrectly C# (CSharp) 메소드

GetWithCategoryIdShouldMapCorrectly() 개인적인 메소드

private GetWithCategoryIdShouldMapCorrectly ( ) : void
리턴 void
        public void GetWithCategoryIdShouldMapCorrectly()
        {
            MyWebApi
                .Routes()
                .ShouldMap("api/projects/category/5")
                .To<ProjectsController>(c => c.GetByCategory(5));
        }