public interface IEventListener
Modifier and Type | Method and Description |
---|---|
void |
explorationEnd()
Called immediately after the end of test generation.
|
void |
explorationStart()
Called immediately at the start of test generation, before any generation steps have occurred.
|
void |
generationStepPost(ExecutableSequence eseq)
Called by the AbstractGenerator during each generation iteration, immediately after a
generation
step() has completed. |
void |
generationStepPre()
Called by the AbstractGenerator during each generation iteration, immediately before a
generation
step() is performed. |
void |
progressThreadUpdate()
Called by ProgressDisplay at regular intervals to monitor progress.
|
boolean |
shouldStopGeneration()
Called by AbstractGenerator to determine if generation should stop.
|
void explorationStart()
void explorationEnd()
void generationStepPre()
step()
is performed.AbstractGenerator
void generationStepPost(ExecutableSequence eseq)
step()
has completed.eseq
- sequence that was generated and executed in the last generation step. Can b null,
which means the last step was unable to generate a sequence (e.g. due to a bad random
choice).AbstractGenerator
void progressThreadUpdate()
ProgressDisplay
boolean shouldStopGeneration()
AbstractGenerator