2016-10-25 12:34:06 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using BenchmarkDotNet.Running;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Tests.Benchmarks
|
|
|
|
|
|
{
|
|
|
|
|
|
class Program
|
|
|
|
|
|
{
|
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
|
{
|
2016-10-27 17:36:08 +02:00
|
|
|
|
var summary = BenchmarkRunner.Run<ModelToSqlExpressionHelperBenchmarks>();
|
|
|
|
|
|
//var summary = BenchmarkRunner.Run<BulkInsertBenchmarks>();
|
2016-10-25 12:34:06 +02:00
|
|
|
|
|
|
|
|
|
|
Console.ReadLine();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|