module battery.testing.searcher

Code Map

module battery.testing.searcher;


//! Searches for tests cases.
class Searcher
{
public:
	mTests: Test[];
	mCommandStore: Configuration;


public:
	this(cs: Configuration) { }
	fn search(project: TestProject, dir: string) Test[] { }
}
class Searcher

Searches for tests cases.