406 |
406 |
407 @param text the text to be completed (string) |
407 @param text the text to be completed (string) |
408 """ |
408 """ |
409 return |
409 return |
410 |
410 |
|
411 def remoteUTDiscover(self, syspath, workdir, discoveryStart): |
|
412 """ |
|
413 Public method to perform a test case discovery. |
|
414 |
|
415 @param syspath list of directories to be added to sys.path on the |
|
416 remote side |
|
417 @type list of str |
|
418 @param workdir path name of the working directory |
|
419 @type str |
|
420 @param discoveryStart directory to start auto-discovery at |
|
421 @type str |
|
422 """ |
|
423 return |
|
424 |
411 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, |
425 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, |
412 syspath, workdir, discover, discoveryStart): |
426 syspath, workdir, discover, discoveryStart, testCases): |
413 """ |
427 """ |
414 Public method to prepare a new unittest run. |
428 Public method to prepare a new unittest run. |
415 |
429 |
416 @param fn name of file to load |
430 @param fn name of file to load |
417 @type str |
431 @type str |