Skip to content

Commit cfa7ca5

Browse files
add PriorityQueue Guid benchmarks
1 parent e736013 commit cfa7ca5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/benchmarks/micro/libraries/System.Collections/PriorityQueue/Perf_PriorityQueue.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5+
using System;
56
using System.Linq;
67
using System.Collections.Generic;
78
using BenchmarkDotNet.Attributes;
@@ -13,6 +14,7 @@ namespace System.Collections.Tests
1314
[BenchmarkCategory(Categories.Libraries, Categories.Collections, Categories.GenericCollections)]
1415
[GenericTypeArguments(typeof(int), typeof(int))]
1516
[GenericTypeArguments(typeof(string), typeof(string))]
17+
[GenericTypeArguments(typeof(Guid), typeof(Guid))]
1618
public class Perf_PriorityQueue<TElement, TPriority>
1719
{
1820
[Params(10, 100, 1000)]

0 commit comments

Comments
 (0)