113 clientCapabilities = pyqtSignal(int, str) |
113 clientCapabilities = pyqtSignal(int, str) |
114 clientCompletionList = pyqtSignal(list, str) |
114 clientCompletionList = pyqtSignal(list, str) |
115 utPrepared = pyqtSignal(int, str, str) |
115 utPrepared = pyqtSignal(int, str, str) |
116 utStartTest = pyqtSignal(str, str) |
116 utStartTest = pyqtSignal(str, str) |
117 utStopTest = pyqtSignal() |
117 utStopTest = pyqtSignal() |
118 utTestFailed = pyqtSignal(str, str) |
118 utTestFailed = pyqtSignal(str, list) |
119 utTestErrored = pyqtSignal(str, str) |
119 utTestErrored = pyqtSignal(str, list) |
120 utFinished = pyqtSignal() |
120 utFinished = pyqtSignal() |
121 passiveDebugStarted = pyqtSignal(str, bool) |
121 passiveDebugStarted = pyqtSignal(str, bool) |
122 |
122 |
123 def __init__(self): |
123 def __init__(self): |
124 """ |
124 """ |
1225 def clientUtTestFailed(self, testname, traceback): |
1225 def clientUtTestFailed(self, testname, traceback): |
1226 """ |
1226 """ |
1227 Public method to process the client test failed info. |
1227 Public method to process the client test failed info. |
1228 |
1228 |
1229 @param testname name of the test (string) |
1229 @param testname name of the test (string) |
1230 @param traceback lines of traceback info (string) |
1230 @param traceback lines of traceback info (list of strings) |
1231 """ |
1231 """ |
1232 self.utTestFailed.emit(testname, traceback) |
1232 self.utTestFailed.emit(testname, traceback) |
1233 |
1233 |
1234 def clientUtTestErrored(self, testname, traceback): |
1234 def clientUtTestErrored(self, testname, traceback): |
1235 """ |
1235 """ |
1236 Public method to process the client test errored info. |
1236 Public method to process the client test errored info. |
1237 |
1237 |
1238 @param testname name of the test (string) |
1238 @param testname name of the test (string) |
1239 @param traceback lines of traceback info (string) |
1239 @param traceback lines of traceback info (list of strings) |
1240 """ |
1240 """ |
1241 self.utTestErrored.emit(testname, traceback) |
1241 self.utTestErrored.emit(testname, traceback) |
1242 |
1242 |
1243 def clientUtFinished(self): |
1243 def clientUtFinished(self): |
1244 """ |
1244 """ |