namespace NUnit.Runner { using System; /// An interface to define how a test suite should be /// loaded. public interface ITestSuiteLoader { /// /// /// Type Load(string suiteClassName); /// /// /// Type Reload(Type aType); } }