c16c988fda
Intoduce test mod and restructure test suites into their own solution folder
13 lines
237 B
C#
13 lines
237 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Benchmarks;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkRunner.Run<ClonerBenchmarks>();
|
|
Console.WriteLine(summary);
|
|
}
|
|
}
|