18 lines
470 B
C#
18 lines
470 B
C#
|
using BenchmarkDotNet.Running;
|
|||
|
using Persistence.Benchmark;
|
|||
|
using Persistence.Benchmark.Tests;
|
|||
|
using Persistence.API;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
public class Program
|
|||
|
{
|
|||
|
private static void Main(string[] args)
|
|||
|
{
|
|||
|
//var host = BenchmarkSwitcher.FromAssembly(typeof(Persistence.API.Program).Assembly);
|
|||
|
//host.Run
|
|||
|
|
|||
|
//System.Console.OutputEncoding = System.Text.Encoding.UTF8;
|
|||
|
|
|||
|
BenchmarkRunner.Run<WitsDataTest>();
|
|||
|
}
|
|||
|
}
|