(self, status, tname, err)
| 186 | self.__startTime = time.time() |
| 187 | |
| 188 | def printMsg(self, status, tname, err): |
| 189 | if status in [FAILED, EXCEPTION] and self.__tcRunLogger: |
| 190 | self.__tcRunLogger.\ |
| 191 | fatal("%s: %s: %s" % (status, |
| 192 | tname, |
| 193 | GetDetailExceptionInfo(err))) |
| 194 | write_str = "=== TestName: %s | Status : %s ===\n" % (tname, status) |
| 195 | self.__resultStream.write(write_str) |
| 196 | print(write_str) |
| 197 | |
| 198 | def addSuccess(self, test, capt): |
| 199 | ''' |
no test coverage detected