Skip to content

Commit 3fa0456

Browse files
authoredNov 22, 2023
Add OperationsPerSecondAttribute (#2468)
1 parent 536a28e commit 3fa0456

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using BenchmarkDotNet.Columns;
2+
using JetBrains.Annotations;
3+
4+
namespace BenchmarkDotNet.Attributes
5+
{
6+
public class OperationsPerSecondAttribute : ColumnConfigBaseAttribute
7+
{
8+
public OperationsPerSecondAttribute() : base(StatisticColumn.OperationsPerSecond) { }
9+
}
10+
}

0 commit comments

Comments
 (0)
Please sign in to comment.