Add support for xunit tests
[mono.git] / mcs / class / Xunit.NetCore.Extensions / Microsoft.Xunit.Performance / BenchmarkAttribute.cs
1 using System;
2 using Xunit;
3 using Xunit.Sdk;
4
5 namespace Microsoft.Xunit.Performance
6 {
7         [TraitDiscoverer("Microsoft.Xunit.Performance.BenchmarkDiscoverer", "Xunit.NetCore.Extensions")]
8         [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
9         public class BenchmarkAttribute : Attribute, ITraitAttribute
10         {
11                 public long InnerIterationCount { get; set; }
12         }
13 }