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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/nunit/src/NUnitCore/ITestCollector.cs')
-rw-r--r--mcs/nunit/src/NUnitCore/ITestCollector.cs29
1 files changed, 15 insertions, 14 deletions
diff --git a/mcs/nunit/src/NUnitCore/ITestCollector.cs b/mcs/nunit/src/NUnitCore/ITestCollector.cs
index 920ff19a590..40bf089be83 100644
--- a/mcs/nunit/src/NUnitCore/ITestCollector.cs
+++ b/mcs/nunit/src/NUnitCore/ITestCollector.cs
@@ -1,15 +1,16 @@
-namespace NUnit.Runner {
- using System.Collections;
-
- /// <summary>
- /// Collects Test class names to be presented by the TestSelector.
- /// <see foocref="TestSelector"/>
- /// </summary>
- public interface ITestCollector {
-
- /// <summary>
- /// Returns a StringCollection of qualified class names.
- /// </summary>
- Hashtable CollectTests();
- }
+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();
+ }
}