jellyfin/benches/Jellyfin.Common.Benches/Program.cs

15 lines
312 B
C#
Raw Normal View History

2019-10-19 00:22:08 +02:00
using System;
using BenchmarkDotNet.Running;
namespace Jellyfin.Common.Benches
{
public static class Program
{
public static void Main(string[] args)
{
2019-11-01 16:26:54 +01:00
_ = BenchmarkRunner.Run<HexEncodeBenches>();
2019-10-19 00:22:08 +02:00
_ = BenchmarkRunner.Run<HexDecodeBenches>();
}
}
}