2024-12-17 09:35:28 +05:00
|
|
|
|
using BenchmarkDotNet.Running;
|
|
|
|
|
using Persistence.Benchmark;
|
|
|
|
|
using Persistence.Benchmark.Tests;
|
2024-12-17 13:40:17 +05:00
|
|
|
|
using DD.Persistence.API;
|
2024-12-17 09:35:28 +05:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
private static void Main(string[] args)
|
|
|
|
|
{
|
2024-12-18 17:09:32 +05:00
|
|
|
|
var count = Convert.ToInt32(Console.ReadLine());
|
|
|
|
|
WitsDataBenchmark.ExecuteTest(count).Wait();
|
2024-12-17 09:35:28 +05:00
|
|
|
|
}
|
|
|
|
|
}
|