MCPcopy Index your code
hub / github.com/python/cpython / notifyTestErrored

Method notifyTestErrored

Tools/unittestgui/unittestgui.py:391–394  ·  view source on GitHub ↗
(self, test, err)

Source from the content-addressed store, hash-verified

389 self.errorInfo.append((test,err))
390
391 def notifyTestErrored(self, test, err):
392 self.errorCountVar.set(1 + self.errorCountVar.get())
393 self.errorListbox.insert(tk.END, "Error: %s" % test)
394 self.errorInfo.append((test,err))
395
396 def notifyTestSkipped(self, test, reason):
397 super(TkTestRunner, self).notifyTestSkipped(test, reason)

Callers 1

addErrorMethod · 0.45

Calls 4

setMethod · 0.45
getMethod · 0.45
insertMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected