We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e736013 commit cfa7ca5Copy full SHA for cfa7ca5
src/benchmarks/micro/libraries/System.Collections/PriorityQueue/Perf_PriorityQueue.cs
@@ -2,6 +2,7 @@
2
// The .NET Foundation licenses this file to you under the MIT license.
3
// See the LICENSE file in the project root for more information.
4
5
+using System;
6
using System.Linq;
7
using System.Collections.Generic;
8
using BenchmarkDotNet.Attributes;
@@ -13,6 +14,7 @@ namespace System.Collections.Tests
13
14
[BenchmarkCategory(Categories.Libraries, Categories.Collections, Categories.GenericCollections)]
15
[GenericTypeArguments(typeof(int), typeof(int))]
16
[GenericTypeArguments(typeof(string), typeof(string))]
17
+ [GenericTypeArguments(typeof(Guid), typeof(Guid))]
18
public class Perf_PriorityQueue<TElement, TPriority>
19
{
20
[Params(10, 100, 1000)]
0 commit comments