Interface ExecutionListener

    • Method Detail

      • executionSucceeded

        void executionSucceeded​(ExecutionPlan executionPlan)
        Called when an execution plan has been finished successfully
        Parameters:
        executionPlan - the execution plan which has been finished successfully
        Since:
        2.0.0
      • executionFailed

        void executionFailed​(ExecutionPlan executionPlan,
                             java.lang.Throwable throwable)
        Called when an execution plan has been finished with an exception.
        Parameters:
        executionPlan - the execution plan which has been finished with an exception
        throwable - The occurred exception
        Since:
        2.0.0
      • suiteSucceeded

        void suiteSucceeded​(TestSuite testSuite)
        Called when a test suite has been finished successfully
        Parameters:
        testSuite - the test suite which has been finished successfully
        Since:
        2.0.0
      • suiteFailed

        void suiteFailed​(TestSuite testSuite,
                         java.lang.Throwable throwable)
        Called when a test suite has been finished with an exception.
        Parameters:
        testSuite - the test suite which has been finished with an exception
        throwable - The occurred exception
        Since:
        2.0.0
      • suiteSkipped

        void suiteSkipped​(TestSuite testSuite)
        Called when a test suite has been skipped. For a skipped test suite suiteStarted(TestSuite) has never been called.
        Parameters:
        testSuite - the test suite which has been skipped
        Since:
        2.0.0
      • classSucceeded

        void classSucceeded​(TestClass testClass)
        Called when a test class has been finished successfully
        Parameters:
        testClass - the test class which has been finished successfully
        Since:
        2.0.0
      • classFailed

        void classFailed​(TestClass testClass,
                         java.lang.Throwable throwable)
        Called when a test class has been finished with an exception.
        Parameters:
        testClass - the test class which has been finished with an exception
        throwable - The occurred exception
        Since:
        2.0.0
      • classSkipped

        void classSkipped​(TestClass testClass)
        Called when a test class has been skipped. For a skipped test class classStarted(TestClass) has never been called.
        Parameters:
        testClass - the test class which has been skipped
        Since:
        2.0.0
      • stepSucceeded

        void stepSucceeded​(TestStep testStep)
        Called when a test step has been finished successfully
        Parameters:
        testStep - the test step which has been finished successfully
        Since:
        2.0.0
      • stepFailed

        void stepFailed​(TestStep testStep,
                        java.lang.Throwable throwable)
        Called when a test step has been finished with an exception.
        Parameters:
        testStep - the test step which has been finished with an exception
        throwable - The occurred exception
        Since:
        2.0.0
      • stepSkipped

        void stepSkipped​(TestStep testStep)
        Called when a test step has been skipped. For a skipped test step stepStarted(TestStep) has never been called.
        Parameters:
        testStep - the test step which has been skipped
        Since:
        2.0.0