Files
speckle-sharp-sdk/tests/Speckle.Core.Tests.Performance/Program.cs
T
2024-06-21 08:42:42 +01:00

12 lines
240 B
C#

using BenchmarkDotNet.Running;
namespace Speckle.Core.Tests.Performance;
public static class Program
{
public static void Main(string[] args)
{
BenchmarkSwitcher.FromAssemblies(new[] { typeof(Program).Assembly }).Run(args);
}
}