示例#1
0
 public TestCaseResult RunTest(Func <TestExecutionContext, object> testFunc, TestOptions options)
 {
     return(TestContext.RunTest(testFunc, options));
 }
示例#2
0
 public TestCaseResult RunTest(string name, Func <TestExecutionContext, object> testFunc)
 {
     return(TestContext.RunTest(name, testFunc));
 }
示例#3
0
 public TestCaseResult RunTest(Func <TestExecutionContext, object> testFunc)
 {
     return(TestContext.RunTest(DefaultTestName, testFunc));
 }