namespace NUnit.Runner { using System.Collections; /// /// Collects Test class names to be presented by the TestSelector. /// /// public interface ITestCollector { /// /// Returns a StringCollection of qualified class names. /// Hashtable CollectTests(); } }