public ConePadTest(ConePadSuite suite, ITestName name, ConeTestMethod test, object[] args, IConeAttributeProvider attributes) { this.suite = suite; this.name = name; this.args = args; this.attributes = attributes; this.test = test; }
public ConePadTestMethodSink(ConeTestNamer names, ConePadSuite suite) : base(names) { this.suite = suite; }
public ConePadRowSuite(ConePadSuite parent, ConeMethodThunk thunk) { this.parent = parent; this.thunk = thunk; }
public void AddSubSuite(ConePadSuite suite) { subsuites.Add(suite); }
void CollectSuite(ConePadSuite suite) { var log = sessionLog.BeginSuite(suite); suite.Run((tests, fixture) => CollectResults(tests, fixture, log)); log.EndSuite(); }