Interface TestStateListener

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void testEnded()
      Called once for all threads after the end of a test.
      void testEnded​(String host)
      Called once for all threads after the end of a test.
      void testStarted()
      Called just before the start of the test from the main engine thread.
      void testStarted​(String host)
      Called just before the start of the test from the main engine thread.
    • Method Detail

      • 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:
        StandardJMeterEngine.run()
      • 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:
        StandardJMeterEngine.run()
      • 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:
        StandardJMeterEngine.stopTest()
      • 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:
        StandardJMeterEngine.stopTest()