1 18 19 package org.apache.jmeter.testelement; 20 21 import org.apache.jmeter.engine.event.LoopIterationEvent; 22 23 26 public interface TestListener 27 { 28 36 public void testStarted(); 37 38 44 public void testEnded(); 45 46 public void testStarted(String host); 47 48 public void testEnded(String host); 49 50 55 public void testIterationStart(LoopIterationEvent event); 56 } | Popular Tags |