Add E2E benchmark project and throughput scenarios for Surreal-backed peers
All checks were successful
NuGet Package Publish / nuget (push) Successful in 1m16s

This commit is contained in:
Joseph Doherty
2026-02-22 05:59:38 -05:00
parent bd10914828
commit c06b56172a
5 changed files with 361 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
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);
}
}