361 |
361 |
362 @param text the text to be completed (string) |
362 @param text the text to be completed (string) |
363 """ |
363 """ |
364 return |
364 return |
365 |
365 |
366 def remoteUTPrepare(self, fn, tn, tfn, cov, covname, coverase): |
366 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase): |
367 """ |
367 """ |
368 Public method to prepare a new unittest run. |
368 Public method to prepare a new unittest run. |
369 |
369 |
370 @param fn the filename to load (string) |
370 @param fn the filename to load (string) |
371 @param tn the testname to load (string) |
371 @param tn the testname to load (string) |
372 @param tfn the test function name to load tests from (string) |
372 @param tfn the test function name to load tests from (string) |
373 @param cov flag indicating collection of coverage data is requested |
373 @param failed list of failed test, if only failed test should be run |
|
374 (list of strings) |
|
375 @param cov flag indicating collection of coverage data is requested (boolean) |
374 @param covname filename to be used to assemble the coverage caches |
376 @param covname filename to be used to assemble the coverage caches |
375 filename |
377 filename (string) |
376 @param coverase flag indicating erasure of coverage data is requested |
378 @param coverase flag indicating erasure of coverage data is requested (boolean) |
377 """ |
379 """ |
378 return |
380 return |
379 |
381 |
380 def remoteUTRun(self): |
382 def remoteUTRun(self): |
381 """ |
383 """ |