IMethodValidator
Validates method to execute.
using System.Reflection;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Internal.Execution
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface IMethodValidator
{
void Validate(MethodInfo method);
}
}