public interface PerfTestWatcher
PerfTestRun.| Modifier and Type | Method and Description |
|---|---|
void |
afterPass(PerfTestPass pass)
Invoked after a performance test pass is ended.
|
void |
afterRun(PerfTest test,
PerfTestRun run)
Invoked after a performance test run is ended.
|
void |
afterStep(PerfTestStep step,
PerfTestRun run)
Invoked after a
PerfTestRun ends an individual
step in the performance test. |
void |
beforePass(PerfTestPass pass)
Invoked before a performance test pass is started.
|
void |
beforeRun(PerfTest test,
PerfTestRun run)
Invoked before a performance test run is started.
|
void |
beforeStep(PerfTestStep step,
PerfTestRun run)
Invoked before a
PerfTestRun starts an individual
step in the performance test. |
void beforePass(PerfTestPass pass)
pass - the current PerfTestPassvoid beforeRun(PerfTest test, PerfTestRun run)
test - the PerfTest about to be executedrun - the current PerfTestRunvoid beforeStep(PerfTestStep step, PerfTestRun run)
PerfTestRun starts an individual
step in the performance test.
This method is called by the same Thread which will
execute the step.step - the PerfTestStep about to be executed.run - the current PerfTestRunvoid afterStep(PerfTestStep step, PerfTestRun run)
PerfTestRun ends an individual
step in the performance test.
This method is called by the same Thread which
executed the step.step - the PerfTestStep which has been executed.run - the current PerfTestRunvoid afterRun(PerfTest test, PerfTestRun run)
test - the PerfTest about to be executedrun - the current PerfTestRunvoid afterPass(PerfTestPass pass)
pass - the current PerfTestPassCopyright © 2021. All rights reserved.