namespace NUnit.Runner { using System; /// /// Collects Test classes to be presented by the TestSelector. /// /// public interface ITestCollector { /// /// Returns an array of FullNames for classes that are tests. /// string[] CollectTestsClassNames(); } }