6903:0d4e1033731b | 6904:3f35037a08d4 |
---|---|
421 @type str | 421 @type str |
422 """ | 422 """ |
423 return | 423 return |
424 | 424 |
425 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, | 425 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, |
426 syspath, workdir, discover, discoveryStart, testCases): | 426 syspath, workdir, discover, discoveryStart, testCases, |
427 debug): | |
427 """ | 428 """ |
428 Public method to prepare a new unittest run. | 429 Public method to prepare a new unittest run. |
429 | 430 |
430 @param fn name of file to load | 431 @param fn name of file to load |
431 @type str | 432 @type str |
451 @type bool | 452 @type bool |
452 @param discoveryStart directory to start auto-discovery at | 453 @param discoveryStart directory to start auto-discovery at |
453 @type str | 454 @type str |
454 @param testCases list of test cases to be loaded | 455 @param testCases list of test cases to be loaded |
455 @type list of str | 456 @type list of str |
456 """ | 457 @param debug flag indicating to run unittest with debugging |
457 return | 458 @type bool |
458 | 459 """ |
459 def remoteUTRun(self): | 460 return |
461 | |
462 def remoteUTRun(self, debug, failfast): | |
460 """ | 463 """ |
461 Public method to start a unittest run. | 464 Public method to start a unittest run. |
465 | |
466 @param debug flag indicating to run unittest with debugging | |
467 @type bool | |
468 @param failfast flag indicating to stop at the first error | |
469 @type bool | |
462 """ | 470 """ |
463 return | 471 return |
464 | 472 |
465 def remoteUTStop(self): | 473 def remoteUTStop(self): |
466 """ | 474 """ |