mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 07:42:51 +08:00
21 lines
589 B
C#
21 lines
589 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Ocelot.Benchmarks
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var switcher = new BenchmarkSwitcher(new[] {
|
|
typeof(DictionaryBenchmarks),
|
|
typeof(UrlPathToUrlPathTemplateMatcherBenchmarks),
|
|
typeof(AllTheThingsBenchmarks),
|
|
typeof(ExceptionHandlerMiddlewareBenchmarks),
|
|
typeof(DownstreamRouteFinderMiddlewareBenchmarks)
|
|
});
|
|
|
|
switcher.Run(args);
|
|
}
|
|
}
|
|
}
|