Debugger/DebugServer.py

changeset 984
f4bddd7cf51e
parent 945
8cd4d08fa9f6
child 1112
8a7d1b9d18db
equal deleted inserted replaced
982:a1abe3018d04 984:f4bddd7cf51e
114 clientCapabilities = pyqtSignal(int, str) 114 clientCapabilities = pyqtSignal(int, str)
115 clientCompletionList = pyqtSignal(list, str) 115 clientCompletionList = pyqtSignal(list, str)
116 utPrepared = pyqtSignal(int, str, str) 116 utPrepared = pyqtSignal(int, str, str)
117 utStartTest = pyqtSignal(str, str) 117 utStartTest = pyqtSignal(str, str)
118 utStopTest = pyqtSignal() 118 utStopTest = pyqtSignal()
119 utTestFailed = pyqtSignal(str, str) 119 utTestFailed = pyqtSignal(str, list)
120 utTestErrored = pyqtSignal(str, str) 120 utTestErrored = pyqtSignal(str, list)
121 utFinished = pyqtSignal() 121 utFinished = pyqtSignal()
122 passiveDebugStarted = pyqtSignal(str, bool) 122 passiveDebugStarted = pyqtSignal(str, bool)
123 123
124 def __init__(self): 124 def __init__(self):
125 """ 125 """
1226 def clientUtTestFailed(self, testname, traceback): 1226 def clientUtTestFailed(self, testname, traceback):
1227 """ 1227 """
1228 Public method to process the client test failed info. 1228 Public method to process the client test failed info.
1229 1229
1230 @param testname name of the test (string) 1230 @param testname name of the test (string)
1231 @param traceback lines of traceback info (string) 1231 @param traceback lines of traceback info (list of strings)
1232 """ 1232 """
1233 self.utTestFailed.emit(testname, traceback) 1233 self.utTestFailed.emit(testname, traceback)
1234 1234
1235 def clientUtTestErrored(self, testname, traceback): 1235 def clientUtTestErrored(self, testname, traceback):
1236 """ 1236 """
1237 Public method to process the client test errored info. 1237 Public method to process the client test errored info.
1238 1238
1239 @param testname name of the test (string) 1239 @param testname name of the test (string)
1240 @param traceback lines of traceback info (string) 1240 @param traceback lines of traceback info (list of strings)
1241 """ 1241 """
1242 self.utTestErrored.emit(testname, traceback) 1242 self.utTestErrored.emit(testname, traceback)
1243 1243
1244 def clientUtFinished(self): 1244 def clientUtFinished(self):
1245 """ 1245 """

eric ide

mercurial