2024-12-25 14:54:25 +05:00
|
|
|
|
using Persistence.Benchmark.Tests;
|
2024-12-17 09:35:28 +05:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|