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

23 lines
607 B
C#
Raw Normal View History

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),
//typeof(DeepCloneBenchmarks),
typeof(XmlPublishedContentInitBenchmarks),
});
switcher.Run(args);
}
}
}