BillableHoursWebApp.Api.Tests.RouteTests.ProjectsControllerRoutesTests.GetWithCompletedProjectIdShouldMapCorrectly C# (CSharp) Method

GetWithCompletedProjectIdShouldMapCorrectly() private method

private GetWithCompletedProjectIdShouldMapCorrectly ( ) : void
return void
        public void GetWithCompletedProjectIdShouldMapCorrectly()
        {
            MyWebApi
                .Routes()
                .ShouldMap("api/projects/complete/5")
                .To<ProjectsController>(c => c.GetInvoiceFromFinalizedProject(5));
        }