13 lines
300 B
C#
13 lines
300 B
C#
namespace DTLib.XXHash.PerformanceTest
|
|
{
|
|
using BenchmarkDotNet.Running;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
BenchmarkRunner.Run<xxHashBenchmark>();
|
|
BenchmarkRunner.Run<UtilsBenchmark>();
|
|
}
|
|
}
|
|
} |