14 lines
353 B
C#
14 lines
353 B
C#
using BenchmarkDotNet.Running;
|
|
using Persistence.Benchmark;
|
|
using Persistence.Benchmark.Tests;
|
|
using DD.Persistence.API;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
var count = Convert.ToInt32(Console.ReadLine());
|
|
WitsDataBenchmark.ExecuteTest(count).Wait();
|
|
}
|
|
} |