ISimpleTestBuilder
The ISimpleTestBuilder interface is exposed by a class that knows how to
build a single tests from a specified method. In general,
it is exposed by an attribute, but it may be implemented in a helper class
used by the attribute in some cases.
using NUnit.Framework.Internal;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Interfaces
{
[NullableContext(1)]
public interface ISimpleTestBuilder
{
TestMethod BuildFrom(IMethodInfo method, [Nullable(2)] Test suite);
}
}