Files
plist-cil/plist-cil.benchmark/Program.cs

14 lines
370 B
C#
Raw Normal View History

2018-07-09 19:57:08 +01:00
using BenchmarkDotNet.Reports;
using BenchmarkDotNet.Running;
2018-06-19 11:16:14 +02:00
namespace Claunia.PropertyList.Benchmark
{
class Program
{
static void Main(string[] args)
{
2018-07-09 19:57:08 +01:00
Summary summary = BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
summary = BenchmarkRunner.Run<BinaryPropertyListWriterBenchmarks>();
2018-06-19 11:16:14 +02:00
}
}
2018-07-09 19:57:08 +01:00
}