Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BenchmarkAttribute.cs - github.com/mono/xunit-binaries.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5697d104694bd6299178059fbed89ab827eb2575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
	}
}