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

ITestCollector.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40bf089be83761ce3e2ced1d02eb7c30acdc1724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace NUnit.Runner 
{
	using System;
	
	/// <summary>
	///    Collects Test classes to be presented by the TestSelector.
	///  <see foocref="TestSelector"/>
	/// </summary>
	public interface ITestCollector 
	{
		/// <summary>
		///    Returns an array of FullNames for classes that are tests.
		/// </summary>
		string[] CollectTestsClassNames();
	}
}