Adds Exception throwing test cases and information to log.
(self, test, err)
| 203 | self.__testresult = SUCCESS |
| 204 | |
| 205 | def handleError(self, test, err): |
| 206 | ''' |
| 207 | Adds Exception throwing test cases and information to log. |
| 208 | ''' |
| 209 | self.printMsg(EXCEPTION, self.__testName, GetDetailExceptionInfo(err)) |
| 210 | self.__testResult = EXCEPTION |
| 211 | |
| 212 | def prepareTestRunner(self, runner): |
| 213 | if self.__testRunner: |
no test coverage detected