An implementation of BaseGUITestRunner using Tkinter.
Methods
|
|
|
|
createWidgets
|
createWidgets ( self )
Creates and packs the various widgets.
Why is it that GUI code always ends up looking a mess, despite all the
best intentions to keep it tidy? Answers on a postcard, please.
|
|
errorDialog
|
errorDialog (
self,
title,
message,
)
|
|
getSelectedTestName
|
getSelectedTestName ( self )
|
|
initGUI
|
initGUI (
self,
root,
initialTestName,
)
Set up the GUI inside the given root window. The test name entry
field will be pre-filled with the given initialTestName.
|
|
notifyRunning
|
notifyRunning ( self )
|
|
notifyStopped
|
notifyStopped ( self )
|
|
notifyTestErrored
|
notifyTestErrored (
self,
test,
err,
)
|
|
notifyTestFailed
|
notifyTestFailed (
self,
test,
err,
)
|
|
notifyTestFinished
|
notifyTestFinished ( self, test )
|
|
notifyTestStarted
|
notifyTestStarted ( self, test )
|
|
showAboutDialog
|
showAboutDialog ( self )
|
|
showHelpDialog
|
showHelpDialog ( self )
|
|
showSelectedError
|
showSelectedError ( self )
|