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

12 lines
286 B
C#
Raw Normal View History

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