ParameterizedMethodSuite
ParameterizedMethodSuite holds a collection of individual
TestMethods with their arguments applied.
using NUnit.Framework.Interfaces;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Internal
{
[NullableContext(1)]
[Nullable(0)]
public class ParameterizedMethodSuite : TestSuite
{
private readonly bool _isTheory;
public new IMethodInfo Method => base.Method;
public override string TestType {
get {
if (_isTheory)
return "Theory";
if (Method.ContainsGenericParameters)
return "GenericMethod";
return "ParameterizedMethod";
}
}
public ParameterizedMethodSuite(IMethodInfo method)
: base(method.TypeInfo.FullName, method.Name)
{
base.Method = method;
_isTheory = method.IsDefined<TheoryAttribute>(true);
base.MaintainTestOrder = true;
}
public ParameterizedMethodSuite(ParameterizedMethodSuite suite, ITestFilter filter)
: base(suite, filter)
{
}
public override TestSuite Copy(ITestFilter filter)
{
return new ParameterizedMethodSuite(this, filter);
}
}
}