Files
plist-cil/plist-cil.benchmark/Program.cs
2018-06-20 14:37:33 +02:00

15 lines
350 B
C#

using BenchmarkDotNet.Running;
using System;
namespace Claunia.PropertyList.Benchmark
{
class Program
{
static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
summary = BenchmarkRunner.Run<BinaryPropertyListWriterBenchmarks>();
}
}
}