Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITestSuiteLoader.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71f7da29f6e79b06a05b8cd85adb7c53979410c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace NUnit.Runner 
{
	using System;

	/// <summary>
	/// An interface to define how a test suite should be loaded.
	/// </summary>
	[Obsolete("Use ILoader")]
	public interface ITestSuiteLoader 
	{
		/// <summary>
		/// 
		/// </summary>
		Type Load(string suiteClassName);
		//Type Reload(Type aType);
	}
}