10 lines
229 B
C#
10 lines
229 B
C#
using Persistence.Benchmark.Tests;
|
|
|
|
public class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
var count = Convert.ToInt32(Console.ReadLine());
|
|
WitsDataBenchmark.ExecuteTest(count).Wait();
|
|
}
|
|
} |