using System.Collections.Generic; using Xunit.Sdk; using Xunit.Abstractions; namespace Xunit.NetCore.Extensions { public class BenchmarkDiscoverer : ITraitDiscoverer { public IEnumerable> GetTraits(IAttributeInfo traitAttribute) { yield return new KeyValuePair("Benchmark", "True"); } } }