ITestAssemblyBuilder
The ITestAssemblyBuilder interface is implemented by a class
that is able to build a suite of tests given an assembly or
an assembly filename.
using NUnit.Framework.Interfaces;
using System.Collections;
using System.Reflection;
namespace NUnit.Framework.Api
{
public interface ITestAssemblyBuilder
{
ITest Build(Assembly assembly, IDictionary options);
ITest Build(string assemblyName, IDictionary options);
}
}