657 |
657 |
658 @param text the text to be completed (string) |
658 @param text the text to be completed (string) |
659 """ |
659 """ |
660 self.__sendCommand("{0}{1}\n".format(DebugProtocol.RequestCompletion, text)) |
660 self.__sendCommand("{0}{1}\n".format(DebugProtocol.RequestCompletion, text)) |
661 |
661 |
662 def remoteUTPrepare(self, fn, tn, tfn, cov, covname, coverase): |
662 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase): |
663 """ |
663 """ |
664 Public method to prepare a new unittest run. |
664 Public method to prepare a new unittest run. |
665 |
665 |
666 @param fn the filename to load (string) |
666 @param fn the filename to load (string) |
667 @param tn the testname to load (string) |
667 @param tn the testname to load (string) |
668 @param tfn the test function name to load tests from (string) |
668 @param tfn the test function name to load tests from (string) |
669 @param cov flag indicating collection of coverage data is requested |
669 @param failed list of failed test, if only failed test should be run |
|
670 (list of strings) |
|
671 @param cov flag indicating collection of coverage data is requested (boolean) |
670 @param covname filename to be used to assemble the coverage caches |
672 @param covname filename to be used to assemble the coverage caches |
671 filename |
673 filename (string) |
672 @param coverase flag indicating erasure of coverage data is requested |
674 @param coverase flag indicating erasure of coverage data is requested (boolean) |
673 """ |
675 """ |
674 raise NotImplementedError("Interface not available.") |
676 raise NotImplementedError("Interface not available.") |
675 |
677 |
676 def remoteUTRun(self): |
678 def remoteUTRun(self): |
677 """ |
679 """ |