Base for a class that receives callback when events occur in the Peach
Engine.
|
|
__init__(self,
port=9001)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| OnTestStarting(self,
run,
test,
totalVariations) |
source code
|
|
|
|
|
|
|
| OnTestCaseStarting(self,
run,
test,
variationCount) |
source code
|
|
|
|
| OnTestCaseReceived(self,
run,
test,
variationCount,
value) |
source code
|
|
|
|
| OnTestCaseException(self,
run,
test,
variationCount,
exception) |
source code
|
|
|
|
| OnTestCaseFinished(self,
run,
test,
variationCount,
actionValues) |
source code
|
|
|
|
| OnFault(self,
run,
test,
variationCount,
monitorData,
value) |
source code
|
|
|
Inherited from threading.Thread:
__repr__,
getName,
isAlive,
isDaemon,
join,
setDaemon,
setName,
start
Inherited from threading.Thread (private):
_set_daemon
Inherited from threading._Verbose (private):
_note
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__str__
|