File: Matching\RouteEndpointAzureBenchmark.cs
Web Access
Project: src\src\Http\Routing\perf\Microbenchmarks\Microsoft.AspNetCore.Routing.Microbenchmarks.csproj (Microsoft.AspNetCore.Routing.Microbenchmarks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using BenchmarkDotNet.Attributes;
 
namespace Microsoft.AspNetCore.Routing.Matching;
 
public class RouteEndpointAzureBenchmark : MatcherAzureBenchmarkBase
{
    [Benchmark]
    public void CreateEndpoints()
    {
        SetupEndpoints();
    }
}