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

15 lines
312 B
C#
Raw Normal View History

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