536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
14 lines
367 B
C#
14 lines
367 B
C#
using System;
|
|
using Xunit;
|
|
using Xunit.Sdk;
|
|
|
|
namespace Microsoft.Xunit.Performance
|
|
{
|
|
[TraitDiscoverer("Microsoft.Xunit.Performance.BenchmarkDiscoverer", "Xunit.NetCore.Extensions")]
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class BenchmarkAttribute : Attribute, ITraitAttribute
|
|
{
|
|
public long InnerIterationCount { get; set; }
|
|
}
|
|
}
|