Files
Umbraco-CMS/src/Umbraco.Tests.Benchmarks/Program.cs

22 lines
538 B
C#
Raw Normal View History

using System;
2016-10-28 14:33:44 +02:00
using System.Reflection;
using BenchmarkDotNet.Running;
namespace Umbraco.Tests.Benchmarks
{
2016-10-28 14:33:44 +02:00
internal class Program
{
2016-10-28 14:33:44 +02:00
public static void Main(string[] args)
{
var switcher = new BenchmarkSwitcher(new[]
2016-10-28 14:33:44 +02:00
{
typeof(BulkInsertBenchmarks),
typeof(ModelToSqlExpressionHelperBenchmarks),
typeof(XmlBenchmarks),
typeof(LinqCastBenchmarks)
});
switcher.Run(args);
}
}
}