Files
Umbraco-CMS/src/Umbraco.Tests.Benchmarks/Program.cs
T
2017-07-25 13:57:38 +02:00

24 lines
641 B
C#

using BenchmarkDotNet.Running;
namespace Umbraco.Tests.Benchmarks
{
internal class Program
{
public static void Main(string[] args)
{
var switcher = new BenchmarkSwitcher(new[]
{
typeof(BulkInsertBenchmarks),
typeof(ModelToSqlExpressionHelperBenchmarks),
typeof(XmlBenchmarks),
typeof(LinqCastBenchmarks),
//typeof(DeepCloneBenchmarks),
typeof(XmlPublishedContentInitBenchmarks),
typeof(CtorInvokeBenchmarks),
});
switcher.Run(args);
}
}
}