From 3fa0456495cac82b536902b101a2972c62c3e4a8 Mon Sep 17 00:00:00 2001 From: "Oleg V. Kozlyuk" Date: Wed, 22 Nov 2023 16:09:32 +0100 Subject: [PATCH] Add OperationsPerSecondAttribute (#2468) --- .../Attributes/Columns/OperationsPerSecondAttribute.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/BenchmarkDotNet/Attributes/Columns/OperationsPerSecondAttribute.cs diff --git a/src/BenchmarkDotNet/Attributes/Columns/OperationsPerSecondAttribute.cs b/src/BenchmarkDotNet/Attributes/Columns/OperationsPerSecondAttribute.cs new file mode 100644 index 0000000000..6315dc3694 --- /dev/null +++ b/src/BenchmarkDotNet/Attributes/Columns/OperationsPerSecondAttribute.cs @@ -0,0 +1,10 @@ +using BenchmarkDotNet.Columns; +using JetBrains.Annotations; + +namespace BenchmarkDotNet.Attributes +{ + public class OperationsPerSecondAttribute : ColumnConfigBaseAttribute + { + public OperationsPerSecondAttribute() : base(StatisticColumn.OperationsPerSecond) { } + } +}