|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Linq;
using Xunit.Abstractions;
using Xunit.Sdk;
namespace Microsoft.DotNet.XUnitExtensions
{
/// <summary>
/// This class discovers all of the tests and test classes that have
/// applied the OuterLoop attribute
/// </summary>
public class OuterLoopTestsDiscoverer : ITraitDiscoverer
{
/// <summary>
/// Gets the trait values from the Category attribute.
/// </summary>
/// <param name="traitAttribute">The trait attribute containing the trait values.</param>
/// <returns>The trait values.</returns>
public IEnumerable<KeyValuePair<string, string>> GetTraits(IAttributeInfo traitAttribute)
{
IEnumerable<object> ctorArgs = traitAttribute.GetConstructorArguments();
if (ctorArgs.Count() < 2)
{
return new[] { new KeyValuePair<string, string>(XunitConstants.Category, XunitConstants.OuterLoop) };
}
return DiscovererHelpers.EvaluateArguments(ctorArgs, XunitConstants.OuterLoop);
}
}
}
|