18 lines
473 B
C#
18 lines
473 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 host = BenchmarkSwitcher.FromAssembly(typeof(Persistence.API.Program).Assembly);
|
|
//host.Run
|
|
|
|
//System.Console.OutputEncoding = System.Text.Encoding.UTF8;
|
|
|
|
BenchmarkRunner.Run<WitsDataTest>();
|
|
}
|
|
} |