Added some benchmarke benchmark stuff

This commit is contained in:
Tom Gardham-Pallister
2016-08-17 19:24:23 +01:00
parent d3b9fddcfd
commit 0421dba1e2
7 changed files with 363 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BenchmarkDotNet.Running;
namespace Ocelot.Benchmarks
{
public class Program
{
public static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<UrlPathToUrlPathTemplateMatcherBenchmarks>();
}
}
}