Method from org.apache.jmeter.samplers.RemoteTestListenerWrapper Detail: |
public void testEnded() {
try {
listener.testEnded();
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
|
public void testEnded(String host) {
try {
listener.testEnded(host);
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
|
public void testIterationStart(LoopIterationEvent event) {
//listener.testIterationStart(event);
}
|
public void testStarted() {
try {
listener.testStarted();
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
|
public void testStarted(String host) {
try {
listener.testStarted(host);
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
|