Inheritance: IConeSuite
Exemple #1
0
 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;
 }
Exemple #2
0
 public ConePadTestMethodSink(ConeTestNamer names, ConePadSuite suite)
     : base(names)
 {
     this.suite = suite;
 }
Exemple #3
0
 public ConePadRowSuite(ConePadSuite parent, ConeMethodThunk thunk)
 {
     this.parent = parent;
     this.thunk = thunk;
 }
Exemple #4
0
 public void AddSubSuite(ConePadSuite suite)
 {
     subsuites.Add(suite);
 }
Exemple #5
0
 void CollectSuite(ConePadSuite suite)
 {
     var log = sessionLog.BeginSuite(suite);
     suite.Run((tests, fixture) => CollectResults(tests, fixture, log));
     log.EndSuite();
 }