8 references to CreateEndpoint
Microsoft.AspNetCore.Routing.Tests (8)
Matching\FullFeaturedMatcherConformanceTest.cs (7)
39var endpoint = CreateEndpoint("/a/{b}/{c}", new { b = "17", c = "18", }); 54var endpoint = CreateEndpoint("/a/{b}/{c}", new { b = "17", c = "18", d = "19" }); 339var expected = CreateEndpoint(template1); 340var other = CreateEndpoint(template2); 373var expected = CreateEndpoint(template1, order: 0); 374var other = CreateEndpoint(template2, order: 1); 428var endpoints = templates.Select((t) => CreateEndpoint(t)).ToArray();
Matching\MatcherConformanceTest.cs (1)
47var endpoint = CreateEndpoint(template);