BillableHoursWebApp.Api.Tests.RouteTests.ProjectsControllerRoutesTests.PutWithCompletedProjectIdShouldMapCorrectly C# (CSharp) Метод

PutWithCompletedProjectIdShouldMapCorrectly() приватный Метод

private PutWithCompletedProjectIdShouldMapCorrectly ( ) : void
Результат void
        public void PutWithCompletedProjectIdShouldMapCorrectly()
        {
            MyWebApi
                .Routes()
                .ShouldMap("api/projects/complete/5")
                .WithHttpMethod(HttpMethod.Put)
                .To<ProjectsController>(c => c.FinalizeProject(5));
        }