Program.cs 972 B

12345678910111213141516171819202122232425262728293031
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using BenchmarkDotNet.Running;
  6. namespace Benchmarks.System.Reactive
  7. {
  8. internal class Program
  9. {
  10. private static void Main()
  11. {
  12. var switcher = new BenchmarkSwitcher(new[] {
  13. typeof(ZipBenchmark),
  14. typeof(CombineLatestBenchmark),
  15. typeof(SwitchBenchmark),
  16. typeof(BufferCountBenchmark),
  17. typeof(RangeBenchmark),
  18. typeof(ToObservableBenchmark),
  19. typeof(RepeatBenchmark),
  20. typeof(AppendPrependBenchmark),
  21. typeof(ComparisonBenchmark),
  22. typeof(ComparisonAsyncBenchmark)
  23. });
  24. switcher.Run();
  25. Console.ReadLine();
  26. }
  27. }
  28. }