Interface TestStateListener

All Known Implementing Classes:
AccessLogSampler, AjpSampler, AuthManager, BackendListener, BeanShellAssertion, BeanShellListener, BeanShellPostProcessor, BeanShellPreProcessor, BeanShellSampler, BeanShellTestElement, BeanShellTimer, BoltConnectionElement, CacheManager, CookieManager, CriticalSectionController, DataSourceElement, HTTPSampler, HTTPSamplerBase, HTTPSamplerProxy, JavaSampler, JMESPathAssertion, JMESPathExtractor, JSR223Assertion, JSR223Listener, JSR223PostProcessor, JSR223PreProcessor, JSR223Sampler, JSR223TestElement, JSR223Timer, KeystoreConfig, LDAPExtSampler, MailerResultCollector, MainFrame, MongoSourceElement, PublisherSampler, RemoteListenerWrapper, RemoteSampleListenerImpl, RemoteTestListenerWrapper, ResultCollector, ResultSaver, StringFromFile, SubscriberSampler, Summariser, SyncTimer, TestPlan, ThroughputController, TimeFunction

public interface TestStateListener
Since:
2.8
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called once for all threads after the end of a test.
    void
    Called once for all threads after the end of a test.
    void
    Called just before the start of the test from the main engine thread.
    void
    Called just before the start of the test from the main engine thread.
  • Method Details

    • testStarted

      void testStarted()

      Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.

      N.B. testStarted() and testEnded() are called from different threads.

      See Also:
    • testStarted

      void testStarted(String host)

      Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.

      N.B. testStarted() and testEnded() are called from different threads.

      Parameters:
      host - name of host
      See Also:
    • testEnded

      void testEnded()

      Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.

      N.B. testStarted() and testEnded() are called from different threads.

      See Also:
    • testEnded

      void testEnded(String host)

      Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.

      N.B. testStarted() and testEnded() are called from different threads.

      Parameters:
      host - name of host
      See Also: