eric7/Debugger/DebuggerInterfaceNone.py

branch
unittest
changeset 9074
1afb90182258
parent 8964
29344a31ee2a
equal deleted inserted replaced
9073:d88e53da6e66 9074:1afb90182258
541 @type str 541 @type str
542 @param text the text to be completed 542 @param text the text to be completed
543 @type str 543 @type str
544 """ 544 """
545 return 545 return
546 546
547 def remoteUTDiscover(self, syspath, workdir, discoveryStart):
548 """
549 Public method to perform a test case discovery.
550
551 @param syspath list of directories to be added to sys.path on the
552 remote side
553 @type list of str
554 @param workdir path name of the working directory
555 @type str
556 @param discoveryStart directory to start auto-discovery at
557 @type str
558 """
559 return
560
561 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase,
562 syspath, workdir, discover, discoveryStart, testCases,
563 debug):
564 """
565 Public method to prepare a new unittest run.
566
567 @param fn name of file to load
568 @type str
569 @param tn name of test to load
570 @type str
571 @param tfn test function name to load tests from
572 @type str
573 @param failed list of failed test, if only failed test should be run
574 @type list of str
575 @param cov flag indicating collection of coverage data is requested
576 @type bool
577 @param covname name of file to be used to assemble the coverage caches
578 filename
579 @type str
580 @param coverase flag indicating erasure of coverage data is requested
581 @type bool
582 @param syspath list of directories to be added to sys.path on the
583 remote side
584 @type list of str
585 @param workdir path name of the working directory
586 @type str
587 @param discover flag indicating to discover the tests automatically
588 @type bool
589 @param discoveryStart directory to start auto-discovery at
590 @type str
591 @param testCases list of test cases to be loaded
592 @type list of str
593 @param debug flag indicating to run unittest with debugging
594 @type bool
595 """
596 return
597
598 def remoteUTRun(self, debug, failfast):
599 """
600 Public method to start a unittest run.
601
602 @param debug flag indicating to run unittest with debugging
603 @type bool
604 @param failfast flag indicating to stop at the first error
605 @type bool
606 """
607 return
608
609 def remoteUTStop(self):
610 """
611 public method to stop a unittest run.
612 """
613 return
614
615 547
616 def createDebuggerInterfaceNone(debugServer, passive): 548 def createDebuggerInterfaceNone(debugServer, passive):
617 """ 549 """
618 Module function to create a debugger interface instance. 550 Module function to create a debugger interface instance.
619 551

eric ide

mercurial