private static void RunCreateOnce <TRun>() where TRun : RunBase, new() { var runner = new TRun { IsNotBenchmark = true }; runner.GlobalSetup(); runner.RunCreateOnce(); }
static void Run <TRun>() where TRun : RunBase, new() { var runner = new TRun { IsNotBenchmark = true }; runner.GlobalSetup(); runner.Run(); }