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

Method notifyTestFailed

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

Source from the content-addressed store, hash-verified

384 self.top.update_idletasks()
385
386 def notifyTestFailed(self, test, err):
387 self.failCountVar.set(1 + self.failCountVar.get())
388 self.errorListbox.insert(tk.END, "Failure: %s" % test)
389 self.errorInfo.append((test,err))
390
391 def notifyTestErrored(self, test, err):
392 self.errorCountVar.set(1 + self.errorCountVar.get())

Callers 1

addFailureMethod · 0.45

Calls 4

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

Tested by

no test coverage detected