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 remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase): |
411 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, |
|
412 syspath): |
412 """ |
413 """ |
413 Public method to prepare a new unittest run. |
414 Public method to prepare a new unittest run. |
414 |
415 |
415 @param fn the filename to load (string) |
416 @param fn name of file to load |
416 @param tn the testname to load (string) |
417 @type str |
417 @param tfn the test function name to load tests from (string) |
418 @param tn name of test to load |
|
419 @type str |
|
420 @param tfn test function name to load tests from |
|
421 @type str |
418 @param failed list of failed test, if only failed test should be run |
422 @param failed list of failed test, if only failed test should be run |
419 (list of strings) |
423 @type list of str |
420 @param cov flag indicating collection of coverage data is requested |
424 @param cov flag indicating collection of coverage data is requested |
421 (boolean) |
425 @type bool |
422 @param covname filename to be used to assemble the coverage caches |
426 @param covname name of file to be used to assemble the coverage caches |
423 filename (string) |
427 filename |
|
428 @type str |
424 @param coverase flag indicating erasure of coverage data is requested |
429 @param coverase flag indicating erasure of coverage data is requested |
425 (boolean) |
430 @type bool |
|
431 @param syspath list of directories to be added to sys.path on the |
|
432 remote side |
|
433 @type list of str |
426 """ |
434 """ |
427 return |
435 return |
428 |
436 |
429 def remoteUTRun(self): |
437 def remoteUTRun(self): |
430 """ |
438 """ |