<PackageReference Include="NUnit" Version="4.2.1" />

ParameterizedMethodSuite

ParameterizedMethodSuite holds a collection of individual TestMethods with their arguments applied.
using NUnit.Framework.Interfaces; using System.Runtime.CompilerServices; namespace NUnit.Framework.Internal { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.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); } } }