예제 #1
0
파일: xml.py 프로젝트: sshyran/testoob
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self._add_unsuccessful_testcase("error", test_info, err_info)
예제 #2
0
파일: html.py 프로젝트: algard/testoob
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self.error_count += 1
     self.result.append((2, test_info.classname(), '', str(err_info)))
예제 #3
0
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self._report_failure("ERROR", "E", self.writers.failure, test_info,
                          err_info)
예제 #4
0
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self._report_failure(
         "ERROR", "E", self.writers.failure, test_info, err_info)
예제 #5
0
파일: xml.py 프로젝트: algard/testoob
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self._add_unsuccessful_testcase("error", test_info, err_info)
예제 #6
0
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self.error_count += 1
     self.result.append((2, test_info.classname(), '', str(err_info)))
예제 #7
0
 def addError(self, test_info, err_info):
     BaseReporter.addError(self, test_info, err_info)
     self._pbg.set_state('failed')
     self._pbg.advance()