Debugger/DebuggerInterfaceNone.py

changeset 6901
f2c774c8db7e
parent 6894
df83ac87e0db
child 6904
3f35037a08d4
equal deleted inserted replaced
6900:060a30488316 6901:f2c774c8db7e
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
435 @type str 449 @type str
436 @param discover flag indicating to discover the tests automatically 450 @param discover flag indicating to discover the tests automatically
437 @type bool 451 @type bool
438 @param discoveryStart directory to start auto-discovery at 452 @param discoveryStart directory to start auto-discovery at
439 @type str 453 @type str
454 @param testCases list of test cases to be loaded
455 @type list of str
440 """ 456 """
441 return 457 return
442 458
443 def remoteUTRun(self): 459 def remoteUTRun(self):
444 """ 460 """

eric ide

mercurial