Class AbstractTestListener

  • All Implemented Interfaces:
    com.consol.citrus.report.TestListener
    Direct Known Subclasses:
    FailureStackTestListener, MessageTracingTestListener

    public abstract class AbstractTestListener
    extends Object
    implements com.consol.citrus.report.TestListener
    Basic implementation of TestListener interface so that subclasses must not implement all methods but only overwrite some listener methods.
    Author:
    Christoph Deppisch
    • Constructor Detail

      • AbstractTestListener

        public AbstractTestListener()
    • Method Detail

      • onTestFailure

        public void onTestFailure​(com.consol.citrus.TestCase test,
                                  Throwable cause)
        Specified by:
        onTestFailure in interface com.consol.citrus.report.TestListener
      • onTestFinish

        public void onTestFinish​(com.consol.citrus.TestCase test)
        Specified by:
        onTestFinish in interface com.consol.citrus.report.TestListener
      • onTestSkipped

        public void onTestSkipped​(com.consol.citrus.TestCase test)
        Specified by:
        onTestSkipped in interface com.consol.citrus.report.TestListener
      • onTestStart

        public void onTestStart​(com.consol.citrus.TestCase test)
        Specified by:
        onTestStart in interface com.consol.citrus.report.TestListener
      • onTestSuccess

        public void onTestSuccess​(com.consol.citrus.TestCase test)
        Specified by:
        onTestSuccess in interface com.consol.citrus.report.TestListener