public void SetTestClass(qx.dev.unit.TestCase value)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 /// <para>There are two ways to define a test function. First by passing a class
 /// and a method name to the contructor or second by giving a the method
 /// directly.</para>
 /// </summary>
 /// <param name="testCase">The test class, which contains the test method</param>
 /// <param name="methodName">The name of the method</param>
 /// <param name="testFunction">A reference to a test function. If this parameter is set the other parameters are ignored.</param>
 public TestFunction(qx.dev.unit.TestCase testCase = null, string methodName = null, Action <object> testFunction = null)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public void AddTestMethod(qx.dev.unit.TestCase testCase, string functionName)
 {
     throw new NotImplementedException();
 }