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

15 lines
350 B
C#
Raw Normal View History

2018-06-19 11:16:14 +02:00
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>();
2018-06-19 11:16:14 +02:00
}
}
}