Files
CBDDC/tests/ZB.MOM.WW.CDBBC.E2E.Benchmark.Tests/Program.cs
Joseph Doherty c06b56172a
All checks were successful
NuGet Package Publish / nuget (push) Successful in 1m16s
Add E2E benchmark project and throughput scenarios for Surreal-backed peers
2026-02-22 05:59:38 -05:00

12 lines
246 B
C#

using BenchmarkDotNet.Running;
namespace ZB.MOM.WW.CDBBC.E2E.Benchmark.Tests;
internal static class Program
{
private static void Main(string[] args)
{
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
}
}