Example #1
0
 public TestMethod AddTestInit(string name)
 {
     TestInit = new TestMethod(name, this);
     return TestInit;
 }
Example #2
0
 public TestMethod AddTestMethod(string Name)
 {
     var m = new TestMethod(Name, this);
     TestMethods.Add(m);
     return m;
 }
Example #3
0
 public TestMethod AddTestCleanup(string name)
 {
     TestCleanup = new TestMethod(name, this);
     return TestCleanup;
 }