Files
ssh.net/test/Renci.SshNet.IntegrationBenchmarks/Program.cs
T
Wojciech Nagórski 0371af9aaf Integration benchmark tests (#1298)
* Integration benchmark tests

* Fixes

* Write with encoding

* Update src/Renci.SshNet/Common/SshDataStream.cs

Co-authored-by: Rob Hague <rob.hague00@gmail.com>

* Add more benchmarks

---------

Co-authored-by: Rob Hague <rob.hague00@gmail.com>
2024-01-28 11:05:42 +01:00

13 lines
279 B
C#

using BenchmarkDotNet.Running;
namespace Renci.SshNet.IntegrationBenchmarks
{
public static class Program
{
public static void Main(string[] args)
{
_ = BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
}
}
}