Adds Failing test cases and information to log.
(self, test, err)
| 214 | return self.__testRunner |
| 215 | |
| 216 | def handleFailure(self, test, err): |
| 217 | ''' |
| 218 | Adds Failing test cases and information to log. |
| 219 | ''' |
| 220 | self.printMsg(FAILED, self.__testName, GetDetailExceptionInfo(err)) |
| 221 | self.__testResult = FAILED |
| 222 | |
| 223 | def startMarvin(self): |
| 224 | ''' |
nothing calls this directly
no test coverage detected