Cleanup benchmarks and add TryCOnvertTo

This commit is contained in:
James Jackson-South
2018-01-20 13:00:10 +11:00
parent cbb6b9bca0
commit 62ffbe7cf0
12 changed files with 255 additions and 275 deletions

View File

@@ -6,17 +6,7 @@ namespace Umbraco.Tests.Benchmarks
{
public static void Main(string[] args)
{
var switcher = new BenchmarkSwitcher(new[]
{
typeof(BulkInsertBenchmarks),
typeof(ModelToSqlExpressionHelperBenchmarks),
typeof(XmlBenchmarks),
typeof(LinqCastBenchmarks),
//typeof(DeepCloneBenchmarks),
typeof(XmlPublishedContentInitBenchmarks),
});
switcher.Run(args);
new BenchmarkSwitcher(typeof(Program).Assembly).Run(args);
}
}
}