Interface TestCaseReport


public interface TestCaseReport
Report the execution of a test case.
Author:
Julien Viet
  • Method Summary

    Modifier and Type
    Method
    Description
    Set a callback for completion, the specified handler is invoked when the test exec has completed.
     
  • Method Details

    • name

      String name()
      Returns:
      the test case name
    • endHandler

      TestCaseReport endHandler(Handler<TestResult> handler)
      Set a callback for completion, the specified handler is invoked when the test exec has completed.
      Parameters:
      handler - the completion handler
      Returns:
      a reference to this, so the API can be used fluently